Files
porcel8/src/args.rs

8 lines
204 B
Rust
Raw Normal View History

2024-02-29 11:55:14 +05:30
use clap::Parser;
#[derive(Parser,Debug,Clone)]
#[command(version,about,author)]
2024-03-05 20:10:53 +05:30
pub struct Porcel8ProgramArgs {
2024-02-29 11:55:14 +05:30
#[arg(short,long,help = "Filename of ROM to load.")]
pub filename:Option<String>
}