mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-22 07:11:03 +00:00
33 lines
536 B
Rust
33 lines
536 B
Rust
#![allow(
|
|
clippy::if_same_then_else,
|
|
clippy::len_without_is_empty,
|
|
clippy::module_inception,
|
|
clippy::option_map_unit_fn,
|
|
clippy::unit_arg
|
|
)]
|
|
|
|
mod blocker;
|
|
mod context;
|
|
mod event;
|
|
pub mod external;
|
|
pub mod files;
|
|
pub mod help;
|
|
mod highlighter;
|
|
pub mod input;
|
|
pub mod manager;
|
|
mod position;
|
|
pub mod preview;
|
|
pub mod select;
|
|
mod step;
|
|
pub mod tab;
|
|
pub mod tasks;
|
|
pub mod which;
|
|
|
|
pub use blocker::*;
|
|
pub use context::*;
|
|
pub use event::*;
|
|
pub use highlighter::*;
|
|
pub use position::*;
|
|
pub use step::*;
|
|
|
|
pub fn init() { init_blocker(); }
|