aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
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()
}