diff options
| author | lukeflo | 2024-10-22 21:52:36 +0200 |
|---|---|---|
| committer | lukeflo | 2024-10-22 21:52:36 +0200 |
| commit | 66402a9c23e0975a8a3d8c2707b689b9cde98ccf (patch) | |
| tree | ccba415674b13eadb6739f5a4d0cb53642dc2e62 /src/main.rs | |
| parent | 0a74206015e764551ec2a0ade8f6853e915b6911 (diff) | |
| download | bibiman-66402a9c23e0975a8a3d8c2707b689b9cde98ccf.tar.gz bibiman-66402a9c23e0975a8a3d8c2707b689b9cde98ccf.zip | |
rearrange code, file and folder structure
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 9 |
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<()> { |
