27int main(
int argc,
char **argv)
31 app.insert(
"encode", std::make_unique<tfkit::EncodeCommand>());
32 app.insert(
"decode", std::make_unique<tfkit::DecodeCommand>());
33 app.insert(
"unpack", std::make_unique<tfkit::UnpackCommand>());
34 app.insert(
"pack", std::make_unique<tfkit::PackCommand>());
35 app.insert(
"convert", std::make_unique<tfkit::ConvertCommand>());
37 return app.run(argc - 1, argv + 1);