1 2 3 4 5 6 7 8 9 10 11 12 13
use config::Configuration; mod config; mod files; mod make; use make::Make; fn main() { // Build the library let config = Configuration::new(); let make = Make::new(config); make.build(); }