mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-23 07:41:03 +00:00
28 lines
433 B
Rust
28 lines
433 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 clipboard;
|
|
pub mod completion;
|
|
pub mod folder;
|
|
pub mod help;
|
|
pub mod input;
|
|
pub mod manager;
|
|
pub mod select;
|
|
mod step;
|
|
pub mod tab;
|
|
pub mod tasks;
|
|
pub mod which;
|
|
|
|
pub use clipboard::*;
|
|
pub use step::*;
|
|
|
|
pub fn init() {
|
|
CLIPBOARD.with(Default::default);
|
|
|
|
yazi_scheduler::init();
|
|
}
|