1 2 3 4 5 6 7 8 9 10
use model::app::TempApp; mod model; mod util; fn main() { let mut app = TempApp::new(); app.run(); }