rama_http/protocols/mod.rs
1//! Protocols that are often built on top of HTTP.
2//!
3//! Even if not strictly bound to HTTP, we still ship them here... for now.
4
5#[cfg(feature = "html")]
6#[cfg_attr(docsrs, doc(cfg(feature = "html")))]
7pub mod html;
8
9#[cfg(feature = "rss")]
10#[cfg_attr(docsrs, doc(cfg(feature = "rss")))]
11pub mod rss;