mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
15 lines
255 B
Rust
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);
|
|
}
|