diff options
author | Shav Kinderlehrer <[email protected]> | 2024-03-11 09:21:46 -0400 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2024-03-11 09:21:46 -0400 |
commit | 0c5e8ab544823fbb4936c536ee1d8a66298f7e51 (patch) | |
tree | 438182a818577a80e01bba75ff19e2847bc3ec47 /src/main.rs | |
parent | 832eb17a68e37f287206ec319a316ea91247808a (diff) | |
download | molehole-0c5e8ab544823fbb4936c536ee1d8a66298f7e51.tar.gz molehole-0c5e8ab544823fbb4936c536ee1d8a66298f7e51.zip |
Pass actions to components
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
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() } |