ldb.cc 424 字节
Newer Older
1 2 3 4 5
//  Copyright (c) 2013, Facebook, Inc.  All rights reserved.
//  This source code is licensed under the BSD-style license found in the
//  LICENSE file in the root directory of this source tree. An additional grant
//  of patent rights can be found in the PATENTS file in the same directory.
//
G
gjain 已提交
6

7
#include "rocksdb/ldb_tool.h"
8

9
int main(int argc, char** argv) {
10
  rocksdb::LDBTool tool;
11 12
  tool.Run(argc, argv);
  return 0;
13
}