mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-24 00:01:03 +00:00
33 lines
431 B
Rust
33 lines
431 B
Rust
#![allow(clippy::module_inception)]
|
|
|
|
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;
|
|
|
|
use app::*;
|
|
use context::*;
|
|
use executor::*;
|
|
use logs::*;
|
|
use root::*;
|
|
use signals::*;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> anyhow::Result<()> {
|
|
// console_subscriber::init();
|
|
|
|
config::init();
|
|
|
|
adaptor::Adaptor::init();
|
|
|
|
App::run().await
|
|
}
|