aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorlukeflo2024-10-22 21:52:36 +0200
committerlukeflo2024-10-22 21:52:36 +0200
commit66402a9c23e0975a8a3d8c2707b689b9cde98ccf (patch)
treeccba415674b13eadb6739f5a4d0cb53642dc2e62 /src/main.rs
parent0a74206015e764551ec2a0ade8f6853e915b6911 (diff)
downloadbibiman-66402a9c23e0975a8a3d8c2707b689b9cde98ccf.tar.gz
bibiman-66402a9c23e0975a8a3d8c2707b689b9cde98ccf.zip
rearrange code, file and folder structure
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs9
1 files changed, 5 insertions, 4 deletions
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 <https://www.gnu.org/licenses/>.
/////
-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<()> {