chat-system 0.1.3

A multi-protocol async chat crate — single interface for IRC, Matrix, Discord, Telegram, Slack, Signal, WhatsApp, and more
1
2
3
4
5
6
7
8
9
10
11
//! Concrete [`ChatListener`](crate::server::ChatListener) implementations.

mod irc;

#[cfg(feature = "tls")]
mod tls_irc;

pub use irc::IrcListener;

#[cfg(feature = "tls")]
pub use tls_irc::TlsIrcListener;