yazi/app/src/main.rs
2023-08-02 10:29:49 +08:00

31 lines
454 B
Rust

mod app;
mod context;
mod executor;
mod header;
mod input;
mod logs;
mod manager;
mod root;
mod select;
mod signals;
mod status;
mod tasks;
mod which;
pub(self) use app::*;
pub(self) use context::*;
pub(self) use executor::*;
pub(self) use logs::*;
pub(self) use root::*;
pub(self) use signals::*;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
// console_subscriber::init();
config::init();
adaptor::Adaptor::init();
App::run().await
}