bafce61979
Summary: First commit for rdb shell Test Plan: unit_test.js does simple assertions on most of the main functionality; will update with rest of tests Reviewers: igor, rven, lijn, yhciang, sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D28749
16 lines
248 B
C++
16 lines
248 B
C++
#ifndef BUILDING_NODE_EXTENSION
|
|
#define BUILDING_NODE_EXTENSION
|
|
#endif
|
|
|
|
#include <v8.h>
|
|
#include <node.h>
|
|
#include "db_wrapper.h"
|
|
|
|
using namespace v8;
|
|
|
|
void InitAll(Handle<Object> exports) {
|
|
DBWrapper::Init(exports);
|
|
}
|
|
|
|
NODE_MODULE(rdb, InitAll)
|