10 lines
131 B
Rust

//! Common types for other ruma crates.
#![warn(missing_docs)]
pub mod presence;
pub mod push;
mod raw;
pub use self::raw::Raw;