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