Files
2025-10-16 16:01:55 +08:00

17 lines
255 B
C++

#include "Application.h"
int main() {
Application app;
try {
app.run();
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}