yazi/yazi-boot/src/lib.rs
2024-02-26 09:14:04 +08:00

15 lines
255 B
Rust

use yazi_shared::RoCell;
mod args;
mod boot;
pub use args::*;
pub use boot::*;
pub static ARGS: RoCell<Args> = RoCell::new();
pub static BOOT: RoCell<Boot> = RoCell::new();
pub fn init() {
ARGS.with(Default::default);
BOOT.with(Default::default);
}