mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +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
|