raisfast 0.2.23

The last backend you'll ever need. Rust-powered headless CMS with built-in blog, ecommerce, wallet, payment and 4 plugin engines.
1
2
3
4
5
6
7
8
9
10
//! Webhook subscription management module
//!
//! Supports CRUD subscriptions + HMAC-SHA256 signed delivery + event filtering.
//! The EventBus subscriber automatically POSTs matching events to subscriber URLs based on subscription rules.

pub mod handler;
pub mod model;
pub mod service;

pub use service::WebhookService;