haproxy_config/lib.rs
1#![doc= include_str!("../README.md")]
2
3mod parser;
4/// Zero copy and Owned representations of config sections.
5pub mod section;
6
7/// Zero copy and Owned representations of the lines in a config section.
8pub mod line;
9
10/// Stricter owned representation of an entire config that is easy to query.
11pub mod config;
12
13pub use parser::parse_sections;
14pub use config::Config;