1 2 3 4 5 6 7 8 9 10 11
#![warn(clippy::pedantic)] mod cli; mod config; mod modules; mod utils; #[macro_use] extern crate serde_derive; use config::Config; fn main() { Config::from_config(Config::path()).print(); }