Files
nginx-log-parser/src/lib.rs
2018-09-11 17:20:25 +02:00

13 lines
148 B
Rust

//!
//! A library to read nginx log files
//!
extern crate regex;
#[macro_use]
extern crate failure;
///
pub mod format;
pub use format::Format;