1 2 3 4 5 6 7 8 9 10 11 12
//! Customized DNS resolver pub use self::{ config::NameServerAddr, server::{Dns, DnsBuilder}, }; mod client_cache; pub mod config; pub mod dns_resolver; pub mod server; mod upstream;