mise 2026.2.24

The front-end to your dev env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::Result;
use crate::cli::edit;

/// Generate a mise.toml file
#[derive(Debug, clap::Args)]
#[clap(verbatim_doc_comment, after_long_help = edit::AFTER_LONG_HELP)]
pub struct Config {
    #[clap(flatten)]
    edit: edit::Edit,
}

impl Config {
    pub async fn run(self) -> Result<()> {
        self.edit.run().await
    }
}