From 66402a9c23e0975a8a3d8c2707b689b9cde98ccf Mon Sep 17 00:00:00 2001 From: lukeflo Date: Tue, 22 Oct 2024 21:52:36 +0200 Subject: rearrange code, file and folder structure --- src/main.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 979c4cf..eaa9e05 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,14 +15,15 @@ // along with this program. If not, see . ///// -use backend::cliargs::{self, CLIArgs}; +use cliargs::CLIArgs; use color_eyre::eyre::Result; use errorsetup::init_error_hooks; -use frontend::app::App; +use tui::app::App; -pub mod backend; +pub mod bib; +pub mod cliargs; pub mod errorsetup; -pub mod frontend; +pub mod tui; #[tokio::main] async fn main() -> Result<()> { -- cgit v1.2.3