2022-08-05 06:30:02 +10:00
|
|
|
use clap::Command;
|
2022-08-05 05:28:14 +10:00
|
|
|
|
2022-08-05 05:29:01 +10:00
|
|
|
mod publish;
|
|
|
|
|
2022-08-05 05:28:14 +10:00
|
|
|
fn main() {
|
2022-08-05 06:30:02 +10:00
|
|
|
let matches = Command::new("Agb tools")
|
2022-08-05 05:28:14 +10:00
|
|
|
.subcommand_required(true)
|
|
|
|
.arg_required_else_help(true)
|
2022-08-05 06:36:24 +10:00
|
|
|
.subcommand(publish::command())
|
2022-08-05 05:28:14 +10:00
|
|
|
.get_matches();
|
|
|
|
|
2022-08-05 06:10:11 +10:00
|
|
|
let result = match matches.subcommand() {
|
2022-08-05 06:36:24 +10:00
|
|
|
Some(("publish", arg_matches)) => publish::publish(arg_matches),
|
2022-08-05 05:28:14 +10:00
|
|
|
_ => 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);
|
2022-08-05 05:28:14 +10:00
|
|
|
}
|
|
|
|
}
|