hipchat-client 0.5.0

An API client library for HipChat
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate hyper;
extern crate hyper_native_tls;
#[macro_use]
extern crate serde_derive;

extern crate serde;
extern crate serde_json;
extern crate url;

pub mod client;
pub mod error;
pub mod emoticon;
pub mod room;
pub mod user;
pub mod message;
pub mod util;

pub use client::Client;