This commit is contained in:
Alex Wied
2026-07-13 14:05:40 -04:00
parent 54f417c96d
commit fc970084d7
12 changed files with 253 additions and 218 deletions
+3 -3
View File
@@ -18,10 +18,10 @@ fn main() -> color_eyre::Result<()> {
.init();
color_eyre::install()?;
let application = iced::daemon(Publisher::new, Publisher::update, Publisher::view)
iced::daemon(Publisher::new, Publisher::update, Publisher::view)
.title(Publisher::title)
.subscription(Publisher::subscription);
.subscription(Publisher::subscription)
.run()?;
application.run()?;
Ok(())
}