From 0c5e8ab544823fbb4936c536ee1d8a66298f7e51 Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Mon, 11 Mar 2024 09:21:46 -0400 Subject: Pass actions to components --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 96ac2f0..ca87db6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,7 +10,6 @@ use eyre::Result; fn main() -> Result<()> { let mut app = app::App::new(std::time::Duration::from_millis(10))?; - app.run()?; - app.quit() + app.run() } -- cgit v1.2.3