use clap::{Parser, ValueEnum};
use clap_complete::Shell;
#[derive(Clone, ValueEnum)]
pub enum Render {
Large,
Medium,
Small,
}
#[derive(Default, Parser)]
#[command(name = "qrsimple", version, about, author)]
pub struct Cli {
#[arg(long)]
pub render: Option<Render>,
pub text: Option<String>,
#[arg(long, value_name = "SHELL")]
pub completion: Option<Shell>,
}