diff options
author | Oxbian <oxbian@mailbox.org> | 2025-02-19 23:56:49 -0500 |
---|---|---|
committer | Oxbian <oxbian@mailbox.org> | 2025-02-19 23:56:49 -0500 |
commit | 0d4bbf7a60012b459be5dfe3077055c8e25bba02 (patch) | |
tree | 17c24fd3de9e43dcd7162f26ae9669dfb0b67780 /src/main.rs | |
parent | b6d93c110c8a14f738d897c0012a2a7d61044f67 (diff) | |
download | NAI-0d4bbf7a60012b459be5dfe3077055c8e25bba02.tar.gz NAI-0d4bbf7a60012b459be5dfe3077055c8e25bba02.zip |
feat: working multiline cursor + message type now showed
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 9 |
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); |