mise 2026.4.11

The front-end to your dev env
mod token;

/// GitHub related commands
#[derive(Debug, clap::Args)]
#[clap(verbatim_doc_comment, hide = true)]
pub struct Github {
    #[clap(subcommand)]
    subcommand: Commands,
}

#[derive(Debug, clap::Subcommand)]
enum Commands {
    Token(token::Token),
}

impl Github {
    pub async fn run(self) -> eyre::Result<()> {
        match self.subcommand {
            Commands::Token(cmd) => cmd.run(),
        }
    }
}