yazi/core/src/lib.rs
2023-10-15 09:09:36 +08:00

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(); }