rocket_webhook/webhooks/
generic.rs

1//! Generic implementations to easily validate custom webhooks
2
3#[cfg(feature = "hmac")]
4mod hmac;
5#[cfg(feature = "hmac")]
6pub use hmac::Hmac256Webhook;