/** * * @file main.cpp * @author Gaspard Kirira * * Copyright 2025, Gaspard Kirira. All rights reserved. * https://github.com/vixcpp/vix * Use of this source code is governed by a MIT license * that can be found in the License file. * * Vix.cpp * */ #include #include #include int main(int argc, char **argv) { try { vix::CLI cli; return cli.run(argc, argv); } catch (const std::exception &ex) { std::cerr << "[FATAL] Uncaught exception: " << ex.what() << std::endl; return 1; } catch (...) { std::cerr << "[FATAL] Unknown error occurred." << std::endl; return 1; } }