miv_editor/
cli.rs

1use clap::Parser;
2
3use crate::utils::version;
4
5#[derive(Parser, Debug)]
6#[command(author, version = version(), about)]
7pub struct Cli {
8    #[arg(help = "File to open")]
9    pub filename: String,
10}