1 2 3 4 5 6 7 8 9 10 11 12 13
mod help; mod types; use clap::{Command, CommandFactory}; pub use types::{CliArgs, OutputTypeArg}; pub fn build_command() -> Command { help::configure(CliArgs::command()) } #[cfg(test)] mod tests;