ruwuma/src/r0/state.rs
iinuwa 301d38c104 Refactor send and sync modules
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`.
2019-12-26 15:44:45 +01:00

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;