1 2 3 4 5 6 7 8 9 10 11 12 13 14
mod batches; mod completion; pub mod parse; mod repo_root; mod repr; mod scaffold; pub mod split_prs; mod usage; mod validate; pub fn run() -> i32 { let args: Vec<String> = std::env::args().collect(); usage::dispatch(&args) }