mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
23 lines
399 B
Rust
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);
|
|
}
|