1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Types used in the Matrix API.
//!
//! Will be better documented in the future; for now,
//! refer to the official API docs for info on what fields mean.

#![deny(missing_docs)]

extern crate serde;
#[macro_use] extern crate serde_derive;
extern crate serde_json;

pub mod room;
pub mod messages;
pub mod content;
pub mod events;
pub mod replies;
pub mod sync;