cargo fmt

This commit is contained in:
Adrian Heine 2025-09-02 11:47:36 +02:00
parent 97057db8d2
commit ddf645e19e
4 changed files with 16 additions and 11 deletions

View file

@ -3,8 +3,8 @@ use crate::symbols::Symbol;
use async_trait::async_trait;
use once_cell::sync::Lazy;
use std::error::Error;
use tokio::sync::Semaphore;
use std::path::Path;
use tokio::sync::Semaphore;
pub type Wait = Lazy<Semaphore>;
static WAIT: Wait = Lazy::new(|| Semaphore::new(1));