1//! 遥测系统 2//! 3//! 跟踪使用统计和事件(本地存储,支持批量上报) 4 5mod config; 6mod sanitizer; 7mod tracker; 8mod types; 9 10pub use config::*; 11pub use sanitizer::*; 12pub use tracker::*; 13pub use types::*; 14 15#[cfg(test)] 16mod tests;