use clap::Parser; mod app; mod config; fn main() { let app = app::App::parse(); app.run(); }