dxm 0.1.2

A manager for FXServer artifacts & resources.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::error::Error;

use dxm::commands::ExecuteOptions;

fn main() -> Result<(), Box<dyn Error>> {
    dxm::log::init()?;

    let args = dxm::commands::cli().get_matches();

    if let Err(e) = dxm::commands::execute(&args, &ExecuteOptions::default()) {
        log::error!("{e}");
        std::process::exit(1);
    }

    Ok(())
}