renamed statistics.rs to metrics.rs #706

This commit is contained in:
DastInDark
2022-09-25 10:39:48 +09:00
parent 08c6dcfbff
commit 345133d903
3 changed files with 2 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
pub mod statistics;
pub mod metrics;
pub mod timelines;

View File

@@ -2,7 +2,7 @@ use crate::detections::message::{LOGONSUMMARY_FLAG, METRICS_FLAG};
use crate::detections::{configs::CONFIG, detection::EvtxRecordInfo};
use prettytable::{Cell, Row, Table};
use super::statistics::EventMetrics;
use super::metrics::EventMetrics;
use hashbrown::HashMap;
#[derive(Debug)]