rusty-pipe/src/main.rs

8 lines
111 B
Rust

pub mod config;
pub mod engine;
fn main() {
let cfg = config::build_config();
println!("{:?}", cfg);
}