1mod config; 2pub mod db; 3pub mod inrelease; 4mod sourceslist; 5mod util; 6 7#[cfg(test)] 8mod test { 9 use std::sync::{LazyLock, Mutex}; 10 pub(crate) static TEST_LOCK: LazyLock<Mutex<()>> = LazyLock::new(|| Mutex::new(())); 11}