#include "lve_app.hpp" // sys headers #include #include #include int main() { lve::LveApp app; try { app.run(); } catch (const std::exception &e) { std::cerr << e.what() << '\n'; return EXIT_FAILURE; } return EXIT_SUCCESS; }