use shared::RoCell; use tokio::sync::Semaphore; pub static BLOCKER: RoCell = RoCell::new(); pub(super) fn init_blocker() { BLOCKER.init(Semaphore::new(1)) }