chatd 0.2.0

chatd is an implementation of an SSH server for real-time communication that serves a chat room instead of a shell and provides encrypted messaging over SSH.
1
2
3
4
5
6
7
mod author;
mod message;
mod message_history;

pub use author::*;
pub use message::*;
pub use message_history::MessageHistory;