1 2 3 4 5 6 7 8 9 10
//! # ufwlog //! //! A library for parsing UFW (Uncomplicated Firewall) log files. pub mod export; pub mod parser; mod ufw_log; pub use ufw_log::LoggedEvent; pub use ufw_log::UfwLog;