xmpd/music_mgr/src/main.rs

25 lines
414 B
Rust
Raw Normal View History

2024-04-07 22:07:56 +00:00
use clap::Parser;
use crate::cli::{CliArgs, CliCommand};
mod cli;
fn main() {
let cli_args = CliArgs::parse();
match cli_args.command {
None => {
// TODO: Download
},
Some(c) => {
match c {
CliCommand::Download => {
// TODO: Download
},
}
},
}
println!("Hello, world!");
}