xmpd/music_mgr/src/cli.rs

31 lines
669 B
Rust

use camino::Utf8PathBuf;
use clap::{Parser, Subcommand};
#[derive(Debug, Parser)]
pub struct CliArgs {
/// Show more info
#[arg(long, short)]
pub debug: bool,
/// Path to manifest
#[arg(long, short, default_value_t=Utf8PathBuf::from("./manifest.json"))]
pub manifest: Utf8PathBuf,
/// Output directory
#[arg(long, short, default_value_t=Utf8PathBuf::from("./out"))]
pub output: Utf8PathBuf,
#[command(subcommand)]
pub command: Option<CliCommand>,
}
#[derive(Debug, Subcommand, Default)]
pub enum CliCommand {
#[default]
Download,
Add {
url: String,
name: String,
genre: String
}
}