6 lines
163 B
Rust
6 lines
163 B
Rust
//! Chat transports — pluggable backends (Matrix, Slack, WhatsApp, Discord) for bot messaging.
|
|
pub mod discord;
|
|
pub mod matrix;
|
|
pub mod slack;
|
|
pub mod whatsapp;
|