groupme_bot 0.1.2

Rust library wrapper for Groupme bots API.
Documentation
extern crate groupme_bot;

use groupme_bot::{Bot, Groupme};
use std::env;

fn main() {
    let group_id = &env::var("GROUPME_BOT_ID").unwrap();

    let groupme = Groupme::new(None);
    let bot: Bot = groupme.bot(group_id);

    bot.post("Hello from Rust!").unwrap();
}