diff options
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<()> { |
