1
0
Fork 0
mirror of https://github.com/mat-1/metasearch2.git synced 2025-08-02 07:26:03 +00:00
metasearch2/src/engines/answer.rs

16 lines
363 B
Rust

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