summaryrefslogtreecommitdiffstats
path: root/gui/src/main.rs
blob: bfa133e5f09abc8558a0fd6043c341603b0f5556 (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
use anyhow::Result;

mod cli;
mod gui;

use distrox_lib::*;

fn main() -> Result<()> {
    let _ = env_logger::try_init()?;
    let matches = crate::cli::app().get_matches();

    match matches.subcommand() {
        None => {
            let name = matches.value_of("name").map(String::from).unwrap(); // safe by clap
            crate::gui::run(name)
        },
        Some((other, _)) => {
            log::error!("No subcommand {} implemented", other);
            Ok(())
        },
    }
}