1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
mod aws; mod cli; mod config; mod error; use error::AppResult; #[tokio::main] async fn main() -> AppResult<()> { // Initialize logging tracing_subscriber::fmt::init(); // Run the CLI cli::Cli::run().await }