//! Wrapper for the Groupme Bots HTTP API.
//!
//! This library interacts with the bots sections of the Groupme v3 API.
//! Information about the API is [here](https://dev.groupme.com/docs/v3#bots),
//! and a bots specific example is [here](https://dev.groupme.com/tutorials/bots).
//!
//! ## Example
//!
//! ```rust,no_run
//! use groupme_bot::{Groupme, Bot};
//!
//! let groupme = Groupme::new(None);
//! let bot = groupme.bot("Secret bot_id");
//!
//! bot.post("Hello, world!");
//! ```
extern crate reqwest;
extern crate serde;
extern crate serde_json;
pub use Groupme;
pub use Bot;
pub use GroupmeError;
pub use BotBuilder;