1 #include <CLI/CLI.hpp>
2 
3 int main(int argc, char** argv)
4 {
5     std::string fileName{};
6 
7     CLI::App app{"Update the firmware of OpenBMC via USB app"};
8     app.add_option("-f,--fileName", fileName,
9                    "Get the name of the USB mount folder");
10 
11     CLI11_PARSE(app, argc, argv);
12 
13     return 0;
14 }
15