summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: a533003f824a2b1907f730a691624ddd2ab023d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
mod core;

use clap::{Parser, Subcommand};

#[derive(Parser)]
#[command(version, about, long_about = None)]
struct Cli {
    #[command(subcommand)]
    command: Command
}

#[derive(Subcommand)]
enum Command {
    Init,
}


fn main() {
    let cli = Cli::parse();
    match &cli.command {
        Command::Init => { todo!() }
    }
}