ruma_push_gateway_api/lib.rs
1#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")]
2#![doc(html_logo_url = "https://ruma.dev/images/logo.png")]
3//! (De)serializable types for the [Matrix Push Gateway API][push-api].
4//! These types can be shared by push gateway and server code.
5//!
6//! [push-api]: https://spec.matrix.org/latest/push-gateway-api/
7
8#![warn(missing_docs)]
9
10pub mod send_event_notification;
11
12ruma_common::priv_owned_str!();