mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
11 lines
183 B
C++
11 lines
183 B
C++
|
#include "engine_v8.h"
|
||
|
|
||
|
namespace mongo {
|
||
|
|
||
|
void ScriptEngine::setup(){
|
||
|
if ( !globalScriptEngine ){
|
||
|
globalScriptEngine = new V8ScriptEngine();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} // namespace mongo
|