mirror of
https://github.com/SkyfallWasTaken/dinopkg.git
synced 2025-04-03 21:44:13 +00:00
20 lines
456 B
Rust
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(())
|
|
}
|