aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs
index b1e52d6..59ab2b2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,9 +1,6 @@
-use crate::{
- app::App,
- ui::Ui
-};
-use ratatui;
+use crate::{app::App, ui::Ui};
use color_eyre::Result;
+use ratatui;
//use reqwest;
mod app;
mod ui;
@@ -11,7 +8,7 @@ mod ui;
fn main() -> Result<()> {
// Setup terminal
let mut terminal = ratatui::init();
-
+
// Run the app
let mut app = App::new();
let res = Ui::new(app).run(terminal);
ArKa projects. All rights to me, and your next child right arm.