This patch only introuces the bare skeleton of the tool, plus the wiring into main. No operations are added yet, they will be added in later patches.
16 lines
285 B
C++
16 lines
285 B
C++
/*
|
|
* Copyright (C) 2021-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace tools {
|
|
|
|
int scylla_types_main(int argc, char** argv);
|
|
int scylla_sstable_main(int argc, char** argv);
|
|
int scylla_nodetool_main(int argc, char** argv);
|
|
|
|
} // namespace tools
|