yazi/yazi-core/src/lib.rs
thelamb 92112de1c0
feat: new confirm component (#1167)
Co-authored-by: sxyazi <sxyazi@gmail.com>
2024-08-22 22:20:31 +08:00

23 lines
399 B
Rust

#![allow(
clippy::if_same_then_else,
clippy::len_without_is_empty,
clippy::module_inception,
clippy::option_map_unit_fn,
clippy::unit_arg
)]
pub mod completion;
pub mod confirm;
pub mod help;
pub mod input;
pub mod manager;
pub mod notify;
pub mod select;
pub mod tab;
pub mod tasks;
pub mod which;
pub fn init() {
manager::WATCHED.with(<_>::default);
manager::LINKED.with(<_>::default);
}