log_analysis/types/
types.rs

1
2use crate::zeek::zeek_log_proto::ZeekProtocol;
3use std::collections::{BTreeMap, HashMap};
4
5pub type LogTree = BTreeMap<ZeekProtocol, HashMap<String, HashMap<String, Vec<String>>>>;