2012-09-25 01:53:13 +02:00
|
|
|
// 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.
|
|
|
|
|
2013-04-12 05:21:49 +02:00
|
|
|
#include "leveldb/ldb_tool.h"
|
2012-09-26 17:06:19 +02:00
|
|
|
|
2012-10-31 19:47:18 +01:00
|
|
|
int main(int argc, char** argv) {
|
2013-04-12 05:21:49 +02:00
|
|
|
leveldb::LDBTool tool;
|
|
|
|
tool.Run(argc, argv);
|
|
|
|
return 0;
|
2012-09-26 17:06:19 +02:00
|
|
|
}
|