yazi/yazi-proxy/src/lib.rs
thelamb 92112de1c0
feat: new confirm component (#1167)
Co-authored-by: sxyazi <sxyazi@gmail.com>
2024-08-22 22:20:31 +08:00

22 lines
343 B
Rust

mod app;
mod completion;
mod confirm;
mod input;
mod manager;
pub mod options;
mod select;
mod semaphore;
mod tab;
mod tasks;
pub use app::*;
pub use completion::*;
pub use confirm::*;
pub use input::*;
pub use manager::*;
pub use select::*;
pub use semaphore::*;
pub use tab::*;
pub use tasks::*;
pub fn init() { crate::init_semaphore(); }