Record element start events and report them when the event_count feature is enabled.

This commit is contained in:
Tom Alexander
2023-10-17 13:32:01 -04:00
parent 17db05c2c7
commit a2f53361eb
7 changed files with 70 additions and 1 deletions

6
src/event_count/mod.rs Normal file
View File

@@ -0,0 +1,6 @@
mod database;
mod event_type;
pub(crate) use database::record_event;
pub use database::report;
pub(crate) use event_type::EventType;