packium/src/main.rs
2024-05-28 14:16:04 +02:00

18 lines
254 B
Rust

mod cli;
mod modrinth;
mod pack;
use clap::Parser;
#[tokio::main]
async fn main() {
let args = cli::Cli::parse();
match &args.command {
cli::Commands::Init => {
pack::Pack::init().await;
}
_ => (),
};
}