1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod cli;
mod cli_run;
mod compiler;
mod config;
mod fetch;
mod output;

pub fn hello() {
    println!("Hello, world!");
}

pub async fn run() -> u8 {
    let cli_args = cli::Cli::from_args();
    let cmd = cli_args.into_cli_run();

    cmd.run().await
}