1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
// Vigil // // Microservices Status Page // Copyright: 2018, Valerian Saliou <valerian@valeriansaliou.name> // License: Mozilla Public License v2.0 (MPL v2.0) pub mod generic; #[cfg(feature = "notifier-email")] pub mod email; #[cfg(feature = "notifier-twilio")] pub mod twilio; #[cfg(feature = "notifier-slack")] pub mod slack; #[cfg(feature = "notifier-zulip")] pub mod zulip; #[cfg(feature = "notifier-telegram")] pub mod telegram; #[cfg(feature = "notifier-pushover")] pub mod pushover; #[cfg(feature = "notifier-gotify")] pub mod gotify; #[cfg(feature = "notifier-xmpp")] pub mod xmpp; #[cfg(feature = "notifier-matrix")] pub mod matrix; #[cfg(feature = "notifier-webex")] pub mod webex; #[cfg(feature = "notifier-webhook")] pub mod webhook;