1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
mod cli; mod config; mod cow; mod error; mod git; mod hooks; mod process; mod rewrite; mod terminal; mod tui; use anyhow::Result; use clap::Parser; use cli::Cli; fn main() -> Result<()> { // Initialize logger env_logger::init(); // Parse CLI arguments let cli = Cli::parse(); // Handle the command cli.run() }