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
/// Discord - Discord Webhook
///
/// Sends a message to a Discord Webhook on events
///
/// # Example
///
/// ```yml
/// webhooks:
///   my_discord:
///     type: discord
///     url: "https://discord.com/api/webhooks/..."
/// ```
///
/// or
///
/// ```yml
/// webhooks:
///   my_discord:
///     type: discord
///     avatar_url: "https://example.com/avatar.png"
///     username: "autopulse"
/// ```
///
/// See [DiscordWebhook](discord::DiscordWebhook) for all options
pub mod discord;

#[doc(hidden)]
pub mod manager;

#[doc(hidden)]
pub use manager::*;