#include "first_app.hpp" #include #include #include int main() { app::FirstApp app{}; try { app.run(); } catch (const std::exception &e) { std::cerr << e.what() << '\n'; return EXIT_FAILURE; } return EXIT_SUCCESS; }