6ef8c620d3
Summary: It is confusing to have auto_roll_logger to stay under db/, which has nothing to do with database. Move filename together as it is a dependency. Closes https://github.com/facebook/rocksdb/pull/2080 Differential Revision: D4821141 Pulled By: siying fbshipit-source-id: ca7d768
16 lines
249 B
C++
16 lines
249 B
C++
#ifndef BUILDING_NODE_EXTENSION
|
|
#define BUILDING_NODE_EXTENSION
|
|
#endif
|
|
|
|
#include <node.h>
|
|
#include <v8.h>
|
|
#include "db/_wrapper.h"
|
|
|
|
using namespace v8;
|
|
|
|
void InitAll(Handle<Object> exports) {
|
|
DBWrapper::Init(exports);
|
|
}
|
|
|
|
NODE_MODULE(rdb, InitAll)
|