autocrate/src/main.rs
PlexSheep 7f1c4d3888
Some checks failed
cargo devel CI / cargo CI (push) Has been cancelled
checks for the yaml config
2024-01-25 22:33:48 +01:00

13 lines
227 B
Rust

use anyhow::Result;
use libpt::log::{debug, trace};
mod error;
mod config;
use config::{cli::Cli, Config};
fn main() -> Result<()> {
let cli = Cli::cli_parse();
let config = Config::load(cli.clone())?;
todo!()
}