colmena/src/main.rs

43 lines
1 KiB
Rust
Raw Normal View History

2020-12-16 05:21:26 +01:00
use clap::{App, AppSettings};
mod nix;
mod command;
mod progress;
mod deployment;
mod util;
2020-12-18 10:27:44 +01:00
macro_rules! command {
($name:ident, $matches:ident) => {
if let Some(sub_matches) = $matches.subcommand_matches(stringify!($name)) {
command::$name::run(&$matches, &sub_matches).await;
return;
}
}
}
macro_rules! bind_command {
($name:ident, $app:ident) => {
$app = $app.subcommand(command::$name::subcommand());
}
}
2020-12-16 05:21:26 +01:00
#[tokio::main(flavor = "multi_thread")]
2020-12-18 10:27:44 +01:00
async fn main() {
let mut app = App::new("Colmena")
2020-12-16 05:21:26 +01:00
.version("0.1.0")
.author("Zhaofeng Li <hello@zhaofeng.li>")
.about("NixOS deployment tool")
.global_setting(AppSettings::ColoredHelp)
2020-12-18 10:27:44 +01:00
.setting(AppSettings::ArgRequiredElseHelp);
2020-12-16 05:21:26 +01:00
2020-12-18 10:27:44 +01:00
bind_command!(apply, app);
bind_command!(build, app);
bind_command!(introspect, app);
let matches = app.get_matches();
2020-12-16 05:21:26 +01:00
2020-12-18 10:27:44 +01:00
command!(apply, matches);
command!(build, matches);
command!(introspect, matches);
2020-12-16 05:21:26 +01:00
}