use yazi_shared::RoCell; mod args; mod boot; pub use args::*; pub use boot::*; pub static ARGS: RoCell = RoCell::new(); pub static BOOT: RoCell = RoCell::new(); #[cfg(unix)] pub static USERS_CACHE: yazi_shared::RoCell = yazi_shared::RoCell::new(); pub fn init() { ARGS.with(Default::default); BOOT.with(Default::default); #[cfg(unix)] USERS_CACHE.with(Default::default); }