aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2024-03-11 09:21:46 -0400
committerShav Kinderlehrer <[email protected]>2024-03-11 09:21:46 -0400
commit0c5e8ab544823fbb4936c536ee1d8a66298f7e51 (patch)
tree438182a818577a80e01bba75ff19e2847bc3ec47 /src/main.rs
parent832eb17a68e37f287206ec319a316ea91247808a (diff)
downloadmolehole-0c5e8ab544823fbb4936c536ee1d8a66298f7e51.tar.gz
molehole-0c5e8ab544823fbb4936c536ee1d8a66298f7e51.zip
Pass actions to components
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
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()
}