Skip to main content

cm_email_webhook_verification/
lib.rs

1mod error;
2mod signer;
3mod validator;
4
5pub use error::{Result, WebhookVerificationError};
6pub use validator::WebhookValidator;
7
8mod headers {
9    pub(crate) const ID: &str = "svix-id";
10    pub(crate) const TIMESTAMP: &str = "svix-timestamp";
11    pub(crate) const SIGNATURE: &str = "svix-signature";
12}