#include "EncodeCommand.hpp"
#include "DecodeCommand.hpp"
#include <cli/App.h>
#include <memory>
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
◆ main()
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 24 of file Main.cpp.
25{
27
28 app.insert("encode", std::make_unique<EncodeCommand>());
29 app.insert("decode", std::make_unique<DecodeCommand>());
30
31 return app.run(argc - 1, argv + 1);
32}