Skip to main content

httpgenerator_cli/args/
mod.rs

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