runbound 0.3.3

RFC-compliant DNS resolver — drop-in Unbound with REST API, ACME auto-TLS, HMAC audit log, and master/slave HA
1
2
3
4
5
6
7
pub mod parser;

pub use parser::UnboundConfig;

pub fn load(path: &str) -> anyhow::Result<UnboundConfig> {
    parser::parse_file(path)
}