diff options
| author | lukeflo | 2024-10-04 12:55:21 +0200 |
|---|---|---|
| committer | lukeflo | 2024-10-04 12:55:21 +0200 |
| commit | e7b755ceeff4c8662c78d0ba0289e8007c297820 (patch) | |
| tree | b03c971a8801d43286d2f3765ad2f040bc8140dc /src/main.rs | |
| parent | 2b5802ead34af39a5786ce6dba92949793ee52f7 (diff) | |
| download | bibiman-e7b755ceeff4c8662c78d0ba0289e8007c297820.tar.gz bibiman-e7b755ceeff4c8662c78d0ba0289e8007c297820.zip | |
impl opening editor for editing file and update lists afterwards
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs index ba242b7..5a7c538 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,14 +15,9 @@ // along with this program. If not, see <https://www.gnu.org/licenses/>. ///// -use std::io; - use backend::cliargs::{self, CLIArgs}; -use ratatui::{backend::CrosstermBackend, Terminal}; - -use crate::{frontend::app::App, frontend::handler::handle_key_events, frontend::tui::Tui}; - use color_eyre::eyre::Result; +use frontend::app::App; pub mod backend; pub mod frontend; |
