Make a new state on initialization
Getty Ritter
7 years ago
| 9 | 9 | #[macro_use] extern crate serde_derive; |
| 10 | 10 | extern crate serde_json; |
| 11 | 11 | |
| 12 | pub mod cfg; | |
| 12 | 13 | pub mod constants; |
| 13 | 14 | pub mod grammar; |
| 14 | 15 | pub mod model; |
| 16 | pub mod strings; | |
| 15 | 17 | pub mod view; |
| 16 | 18 | |
| 17 | 19 | fn main() { |
| 18 | grammar::grammar_test(); | |
| 19 | ||
| 20 | let cfg = cfg::palladio_args(); | |
| 21 | let state = model::State::new(cfg); | |
| 20 | 22 | view::App::run(); |
| 21 | 23 | } |