raisfast 0.2.24

The fastest CMS, easiest to deploy. Rust-powered high-performance BaaS and 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;