lib: add Analyzer trait

This trait will be implemented by all of our heuristics, giving
us a uniform interface for collecting events and displaying them
to the user.
This commit is contained in:
Will Greenberg
2024-01-31 18:47:49 -08:00
parent 7e4511fdde
commit d570ad3cb1
3 changed files with 51 additions and 0 deletions

View File

@@ -8,3 +8,4 @@ pub mod gsmtap;
pub mod gsmtap_parser;
pub mod pcap;
pub mod lte_rrc;
pub mod analysis;