Crate groupme_bot [] [src]

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, and a bots specific example is here.

Example

use groupme_bot::{Groupme, Bot};

let groupme = Groupme::new(None);
let bot = groupme.bot("Secret bot_id");

bot.post("Hello, world!");

Structs

Bot

Groupme Bot interface for posting messages.

BotBuilder

Builder to create Bots with configuration and add them to Groupme.

Groupme

Local representation of Groupme API account for managing bots.

Enums

GroupmeError

The error type for any issues occuring while interacting with the Groupme API.