agb/tools/src/main.rs

25 lines
645 B
Rust
Raw Normal View History

use clap::{command, Parser};
mod publish;
#[derive(Parser, Debug)]
struct PublishAllCratesArgs {}
fn main() {
let matches = command!()
.propagate_version(true)
.subcommand_required(true)
.arg_required_else_help(true)
.subcommand(clap::Command::new("publish").about("Publishes agb and all subcrates"))
.get_matches();
2022-08-05 06:10:11 +10:00
let result = match matches.subcommand() {
Some(("publish", _)) => publish::publish(),
_ => unreachable!("Exhausted list of subcommands and subcommand_required prevents `None`"),
2022-08-05 06:10:11 +10:00
};
if let Err(e) = result {
eprintln!("Error: {:?}", e);
}
}