1 2 3 4 5 6 7 8 9
//! cargo-jam command line interface use cjam::cmd::App; use clap::Parser; fn main() { let app = App::parse(); app.run().unwrap() }