ruwuma/src/lib.rs
2015-11-30 00:09:55 -08:00

11 lines
272 B
Rust

//! Crate ruma_events contains serializable types for the events in the [Matrix](https://matrix.org)
//! specification that can be shared by client and server code.
pub mod call;
pub mod core;
pub mod presence;
pub mod receipt;
pub mod room;
pub mod tag;
pub mod typing;