mirror of
https://github.com/themasch/nginx-log-parser.git
synced 2025-06-15 00:46:32 +00:00
13 lines
148 B
Rust
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;
|