rpgmxp_project/
main.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
mod commands;

#[derive(Debug, argh::FromArgs)]
#[argh(description = "a CLI to build RPGMaker XP assets")]
struct Options {
    #[argh(subcommand)]
    subcommand: Subcommand,
}

#[derive(Debug, argh::FromArgs)]
#[argh(subcommand)]
enum Subcommand {
    Init(self::commands::init::Options),
}

fn main() -> anyhow::Result<()> {
    let options: Options = argh::from_env();

    match options.subcommand {
        Subcommand::Init(options) => self::commands::init::exec(options)?,
    }

    Ok(())
}