()
| 13 | use iced::{Color, Element}; |
| 14 | |
| 15 | fn main() -> iced::Result { |
| 16 | iced::application::timed(App::new, App::update, App::subscription, App::view) |
| 17 | .font(include_bytes!("fonts/FiraCodeNerdFont-Regular.ttf")) |
| 18 | .default_font(iced::Font::with_name("FiraCode Nerd Font")) |
| 19 | .run() |
| 20 | } |
| 21 | |
| 22 | #[derive(Debug, Clone)] |
| 23 | enum Message { |
nothing calls this directly
no outgoing calls
no test coverage detected