/**
* @file main.cpp
* @brief 商城系统命令行入口。
*/
#include "app.hpp"
* @brief 程序主入口。
* @return 程序退出码
int main() {
App app;
app.run();
return 0;
}