eve_log_parser/lib.rs
1//! This crate will give all the functionalities to read eve logs and parse them
2//!
3//! Currently it will be able to read out damage and logi logs.
4//! It needs to be extended with other log types and the functionalities to read logs from the log
5//! directory as they're being written by the game
6
7mod parser;
8mod watcher;
9
10pub mod models;
11
12pub use parser::{parse_log_header, parse_log_line};
13pub use watcher::{get_log_folder, watch_log_file};