yazi/yazi-core/src/lib.rs

32 lines
521 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;
pub mod completion;
mod context;
mod event;
pub mod external;
pub mod files;
pub mod help;
mod highlighter;
pub mod input;
pub mod manager;
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 step::*;
pub fn init() { init_blocker(); }