wini 0.1.0

CLI utility for wini
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use wini::{self, cli, init::ask::ask};


fn main() {
    let matches = cli::build();

    if let Some(_matches) = matches.subcommand_matches("init") {
        if let Err(some_err) = ask() {
            eprintln!("{some_err}");
        }
    } else {
        wini::just::run::run_from_arg_match(&matches);
    }
}