thin-provisioning-tools/main.cc

25 lines
517 B
C++
Raw Normal View History

2014-08-27 18:31:31 +05:30
#include <iostream>
#include "base/application.h"
#include "caching/commands.h"
#include "era/commands.h"
#include "thin-provisioning/commands.h"
//----------------------------------------------------------------
int main(int argc, char **argv)
{
using namespace base;
application app;
caching::register_cache_commands(app);
era::register_era_commands(app);
thin_provisioning::register_thin_commands(app);
2014-08-27 18:31:31 +05:30
return app.run(argc, argv);
}
//----------------------------------------------------------------