mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
17 lines
259 B
Rust
17 lines
259 B
Rust
#![allow(clippy::module_inception)]
|
|
|
|
mod base;
|
|
mod components;
|
|
mod folder;
|
|
mod header;
|
|
mod manager;
|
|
mod preview;
|
|
mod status;
|
|
|
|
pub use base::*;
|
|
pub use components::*;
|
|
pub use folder::*;
|
|
pub use header::*;
|
|
pub use manager::*;
|
|
use preview::*;
|
|
pub use status::*;
|