mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-22 23:31:05 +00:00
31 lines
454 B
Rust
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
|
|
}
|