summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index b97e52d..e5a8fa2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,9 @@
-mod commands;
+use std::io::Result;
-fn main() {
- println!("Hello, world!");
+mod tui;
+
+fn main() -> Result<()> {
+ let mut terminal = tui::init();
+ tui::restore();
+ Ok(())
}