Files
huskies/server/src/chat/transport/mod.rs
T

10 lines
513 B
Rust
Raw Normal View History

//! 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.
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.
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.
pub mod slack;
2026-04-29 10:41:32 +00:00
/// WhatsApp transport — sends messages via Meta Cloud API and Twilio API.
pub mod whatsapp;