rust_lum/src/args.rs
2022-03-09 17:58:31 +01:00

14 lines
301 B
Rust

use clap::Parser;
#[derive(Parser, Debug)]
#[clap(author, version, about, long_about = None)]
pub struct Cli {
/// file for light sequences
#[clap(short, long)]
pub spectacle_file: String,
/// musique file that will be played
#[clap(short, long)]
pub musique_file: String,
}