#[derive(clap::Args)]
pub struct Command {
    pub arg: T,
}

impl Command {
    pub fn handle(self) -> Result<(), Box<dyn std::error::Error>> {
        // ✔ ✖ → ⚠ ℹ

        Ok(())
    }
}
