mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
7 lines
138 B
Rust
7 lines
138 B
Rust
pub fn init_tests() {
|
|
static INIT: std::sync::OnceLock<()> = std::sync::OnceLock::new();
|
|
|
|
INIT.get_or_init(|| {
|
|
crate::init();
|
|
});
|
|
}
|