reporters/
lib.rs

1//! # Reporters
2//!
3//! `reporters` will help you in sending a piece of information or message to different destinations e.g. email inbox, slack channel etc
4
5pub mod reporter;
6
7pub use reporter::*;