https://github.com/facebook/rocksdb
Raw File
Tip revision: aad2110823c9448b3e47cdadda81739e76514faa authored by Mayank Agarwal on 04 October 2013, 19:16:58 UTC
Updating README.fb to have newest verison 2.4
Tip revision: aad2110
ldb.cc
// Copyright (c) 2012 Facebook. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "rocksdb/ldb_tool.h"

int main(int argc, char** argv) {
  rocksdb::LDBTool tool;
  tool.Run(argc, argv);
  return 0;
}
back to top