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

1
lib/src/analysis/mod.rs Normal file
View File

@@ -0,0 +1 @@
pub mod analyzer;