11 lines
243 B
Rust
11 lines
243 B
Rust
//! Methods and types for generating [ruma-events] events.
|
|
//!
|
|
//! [ruma-events]: https://github.com/ruma/ruma/tree/main/ruma-events
|
|
|
|
pub mod event;
|
|
pub mod event_content;
|
|
pub mod event_enum;
|
|
pub mod event_parse;
|
|
pub mod event_type;
|
|
mod util;
|