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

11 lines
187 B
Rust

//! The CLI definitions.
pub use {crate::cli::run::run, clap::Parser};
mod run;
/// The main CLI command.
#[derive(Debug, Parser)]
#[command(about, author, version)]
pub struct Cli {}