rocksdb/tools/ldb.cc
Dhruba Borthakur 1186192ed1 Replace include/leveldb with include/rocksdb.
Summary: Replace include/leveldb with include/rocksdb.

Test Plan:
make clean; make check
make clean; make release

Differential Revision: https://reviews.facebook.net/D12489
2013-08-23 10:51:00 -07:00

12 lines
286 B
C++

// 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) {
leveldb::LDBTool tool;
tool.Run(argc, argv);
return 0;
}