mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-24 00:01:03 +00:00
4 lines
127 B
Rust
4 lines
127 B
Rust
use once_cell::sync::Lazy;
|
|
use tokio::sync::Semaphore;
|
|
|
|
pub static BLOCKER: Lazy<Semaphore> = Lazy::new(|| Semaphore::new(1));
|