pub mod calc; pub mod dictionary; pub mod ip; pub mod timezone; pub mod useragent; pub mod wikipedia; macro_rules! regex { ($re:literal $(,)?) => {{ static RE: std::sync::OnceLock = std::sync::OnceLock::new(); RE.get_or_init(|| regex::Regex::new($re).unwrap()) }}; } pub(crate) use regex;