1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! Nginx Config Modification Tool
//! ==============================
//!
//! Note: we currently working on command-line tool, so internals/lib are
//! poorly documented. We plan to improve on it later.
//!
//! [Docs](https://docs.rs/nginx-config-mod/) |
//! [Github](https://github.com/tailhook/nginx-config-mod/) |
//! [Crate](https://crates.io/crates/nginx-config-mod)
//!
extern crate nginx_config;
extern crate url;
#[macro_use] extern crate failure;

mod config;
mod errors;
pub mod checks;

pub use errors::ReadError;
pub use config::{Config, EntryPoint};