rocket_webhook/webhooks/
built_in.rs

1//! Built-in webhooks
2
3#[cfg(feature = "discord")]
4mod discord;
5#[cfg(feature = "discord")]
6pub use discord::DiscordWebhook;
7
8#[cfg(feature = "github")]
9mod github;
10#[cfg(feature = "github")]
11pub use github::GitHubWebhook;
12
13#[cfg(feature = "sendgrid")]
14mod sendgrid;
15#[cfg(feature = "sendgrid")]
16pub use sendgrid::SendGridWebhook;
17
18#[cfg(feature = "shopify")]
19mod shopify;
20#[cfg(feature = "shopify")]
21pub use shopify::ShopifyWebhook;
22
23#[cfg(feature = "slack")]
24mod slack;
25#[cfg(feature = "slack")]
26pub use slack::SlackWebhook;
27
28#[cfg(feature = "stripe")]
29mod stripe;
30#[cfg(feature = "stripe")]
31pub use stripe::StripeWebhook;
32
33#[cfg(feature = "standard")]
34mod standard;
35#[cfg(feature = "standard")]
36pub use standard::StandardWebhook;