1 2 3 4 5 6 7 8 9 10
mod config; mod run; mod types; mod utils; fn main() { let config = config::load_config().unwrap(); let blocks = types::Blocks::new(); run::run(config, blocks); }