//! Contains the `ChatAdapter` trait and several implementations
use Sender;
use IncomingMessage;
use Chatbot;
pub use CliAdapter;
pub use SlackAdapter;
pub use IrcAdapter;
pub use IrcConfig;
/// Chatbot is extensible in both message sources and command handling. To add a
/// new message source, create a type that implements the `ChatAdapter` trait.