1 2 3 4 5 6 7 8 9 10
//! CLI surface for the `tl` binary. `args` defines the clap structure; //! `commands` routes subcommands to handlers. pub mod args; pub mod commands; pub mod doctor; pub mod perf; pub use args::Cli; pub use commands::dispatch;