#[cfg(not(any(feature = "maxminddb", feature = "ripe-geo")))]
compile_error!("At least one of geo-IP database features must be enabled");
// Remove after IpAddr::to_canonical stabilizes
// https://github.com/rust-lang/rust/issues/27709
mod canonical_ip;
pub mod config;
pub mod geo;
mod header_tools;
mod healthcheck;
#[cfg(feature = "ripe-geo")]
pub mod intervals;
mod mirror;
mod non_zero_duration;
pub mod service;
mod unavailable;
mod uri_tools;