1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
/// Actors module

/// Generic trait definition for curl checkers
pub mod generic_checker;

///  sync Easy2+Multi bulk actor
pub mod multi_checker;

/// store history of checks on disk
pub mod history_teacher;

/// read last history states and send Slack notifications if necessary
pub mod results_warden;

/// notificator actor
pub mod notificator;