dinopkg/crates/dinopkg-cli/src/main.rs
2024-07-09 21:39:58 +01:00

20 lines
456 B
Rust

use clap::Parser;
use env_logger::{Builder, Env};
mod command;
use color_eyre::Result;
use command::{Cli, Command};
#[tokio::main]
async fn main() -> Result<()> {
let env = Env::new()
.filter("DINOPKG_LOG")
.write_style("DINOPKG_LOG_STYLE");
env_logger::try_init_from_env(env)?;
let cli = Cli::parse();
match cli.command {
Command::Run { script_name } => command::run::run(script_name).await?,
}
Ok(())
}