cimengine-build-tools/src/main.rs

18 lines
279 B
Rust
Raw Normal View History

2024-04-24 18:52:28 +03:00
use clap::Parser;
mod build;
mod init;
mod types;
use types::Commands;
fn main() {
let args = types::Cli::parse();
match args.cmd {
Commands::Build => build::build(),
Commands::Init { name } => init::init(name),
_ => unimplemented!(),
}
}