Refactor(treewide): Remove the useless `tui_app` directory

This commit is contained in:
Benedikt Peetz 2023-07-26 21:19:50 +02:00
parent 15c705154e
commit 7adea99703
Signed by: bpeetz
GPG Key ID: A5E94010C3A642AD
27 changed files with 3 additions and 12 deletions

View File

@ -1,13 +1,11 @@
//mod app; mod app;
//mod ui; mod ui;
//mod accounts; mod accounts;
mod cli; mod cli;
mod tui_app;
use clap::Parser; use clap::Parser;
use crate::cli::{Args, Command}; use crate::cli::{Args, Command};
pub use tui_app::*;
#[tokio::main] #[tokio::main]
async fn main() -> anyhow::Result<()> { async fn main() -> anyhow::Result<()> {

View File

@ -1,7 +0,0 @@
pub mod app;
pub mod ui;
pub mod accounts;
//pub use app::*;
//pub use ui::*;
//pub use accounts::*;