chipa_webhooks/lib.rs
1pub mod dispatcher;
2pub mod error;
3pub mod hints;
4pub mod matcher;
5pub mod platform;
6pub mod template;
7
8pub use dispatcher::{Destination, WebhookDispatcher, WebhookDispatcherBuilder};
9pub use error::WebhookError;
10pub use hints::WithHints;
11pub use matcher::MatcherRegistry;
12pub use platform::{
13 discord::Discord,
14 telegram::{ParseMode, Telegram},
15};
16pub use template::TemplateEngine;