This commit moves the message, member and state event endpoints from the send and sync modules to make interaction with those events more consistent with how other events are used, for example, `r0::<event type>::<create, get, update, delete>_event`.
8 lines
217 B
Rust
8 lines
217 B
Rust
//! Endpoints for managing room state
|
|
|
|
pub mod create_state_event_for_empty_key;
|
|
pub mod create_state_event_for_key;
|
|
pub mod get_state_events;
|
|
pub mod get_state_events_for_empty_key;
|
|
pub mod get_state_events_for_key;
|