gdritter repos palladio / b5262b3
Make a new state on initialization Getty Ritter 5 years ago
1 changed file(s) with 4 addition(s) and 2 deletion(s). Collapse all Expand all
99 #[macro_use] extern crate serde_derive;
1010 extern crate serde_json;
1111
12 pub mod cfg;
1213 pub mod constants;
1314 pub mod grammar;
1415 pub mod model;
16 pub mod strings;
1517 pub mod view;
1618
1719 fn main() {
18 grammar::grammar_test();
19
20 let cfg = cfg::palladio_args();
21 let state = model::State::new(cfg);
2022 view::App::run();
2123 }