rocket-webhook 0.1.0-alpha.2

Webhook validation for Rocket applications
Documentation
//! Built-in webhooks

#[cfg(feature = "discord")]
mod discord;
#[cfg(feature = "discord")]
pub use discord::DiscordWebhook;

#[cfg(feature = "github")]
mod github;
#[cfg(feature = "github")]
pub use github::GitHubWebhook;

#[cfg(feature = "sendgrid")]
mod sendgrid;
#[cfg(feature = "sendgrid")]
pub use sendgrid::SendGridWebhook;

#[cfg(feature = "shopify")]
mod shopify;
#[cfg(feature = "shopify")]
pub use shopify::ShopifyWebhook;

#[cfg(feature = "slack")]
mod slack;
#[cfg(feature = "slack")]
pub use slack::SlackWebhook;

#[cfg(feature = "stripe")]
mod stripe;
#[cfg(feature = "stripe")]
pub use stripe::StripeWebhook;

#[cfg(feature = "standard")]
mod standard;
#[cfg(feature = "standard")]
pub use standard::StandardWebhook;