xplr/src/lib.rs

14 lines
272 B
Rust
Raw Normal View History

#![allow(clippy::too_many_arguments)]
#![allow(clippy::from_over_into)]
#![allow(clippy::unnecessary_wraps)]
2021-03-01 11:23:04 +00:00
pub mod app;
pub mod auto_refresher;
2021-03-31 11:50:37 +00:00
pub mod config;
pub mod event_reader;
2021-03-31 11:50:37 +00:00
pub mod explorer;
pub mod input;
pub mod pipe_reader;
pub mod pwd_watcher;
pub mod ui;