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;
|
|
|
|
|
2016-01-08 18:21:52 +05:30
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|