yazi/core/src/manager/mod.rs
2023-10-01 15:49:07 +08:00

19 lines
278 B
Rust

mod backstack;
mod finder;
mod folder;
mod manager;
mod mode;
mod preview;
mod tab;
mod tabs;
mod watcher;
pub use backstack::*;
pub use finder::*;
pub use folder::*;
pub use manager::*;
pub use mode::*;
pub use preview::*;
pub use tab::*;
pub use tabs::*;
pub use watcher::*;