()
| 9 | }; |
| 10 | |
| 11 | fn main() -> iced::Result { |
| 12 | iced::application(App::new, App::update, App::view) |
| 13 | .theme(App::theme) |
| 14 | .font(include_bytes!("fonts/FiraCodeNerdFont-Regular.ttf")) |
| 15 | .default_font(iced::Font::with_name("FiraCode Nerd Font")) |
| 16 | .run() |
| 17 | } |
| 18 | |
| 19 | #[derive(Debug, Clone)] |
| 20 | enum Message { |