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 {}
|