aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index eaa9e05..c2c5121 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -15,12 +15,13 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
/////
+use app::App;
use cliargs::CLIArgs;
use color_eyre::eyre::Result;
use errorsetup::init_error_hooks;
-use tui::app::App;
-pub mod bib;
+pub mod app;
+pub mod bibiman;
pub mod cliargs;
pub mod errorsetup;
pub mod tui;