1
Fork 0
bautils/source/cli/mod.rs

11 lines
187 B
Rust
Raw Normal View History

2023-10-31 15:58:35 +00:00
//! The CLI definitions.
2023-10-31 13:51:57 +00:00
pub use {crate::cli::run::run, clap::Parser};
mod run;
2023-10-31 15:58:35 +00:00
/// The main CLI command.
2023-10-31 13:51:57 +00:00
#[derive(Debug, Parser)]
#[command(about, author, version)]
pub struct Cli {}