summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 1827e667ecaac5c9b5a9b76ece93739b9906f90f (plain)
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 core;
mod utilities;

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!() }
    }
}