2026-04-12 13:11:23 +00:00
|
|
|
//! Chat transports — pluggable backends (Matrix, Slack, WhatsApp, Discord) for bot messaging.
|
2026-04-29 10:41:32 +00:00
|
|
|
/// Discord bot transport — sends and receives messages via the Discord REST/Gateway APIs.
|
2026-04-04 12:08:39 +00:00
|
|
|
pub mod discord;
|
2026-04-29 10:41:32 +00:00
|
|
|
/// Matrix bot transport — sends messages via the Matrix SDK and runs the sync loop.
|
2026-03-24 17:54:51 +00:00
|
|
|
pub mod matrix;
|
2026-04-29 10:41:32 +00:00
|
|
|
/// Slack bot transport — sends messages via the Slack Web API and handles webhook events.
|
2026-03-24 17:54:51 +00:00
|
|
|
pub mod slack;
|
2026-04-29 10:41:32 +00:00
|
|
|
/// WhatsApp transport — sends messages via Meta Cloud API and Twilio API.
|
2026-03-24 17:54:51 +00:00
|
|
|
pub mod whatsapp;
|