1//! HTTP SSE compatibility module. 2//! 3//! `crate::sse` is the canonical SSE implementation. This module exists only 4//! to provide the stable `crate::http::sse::*` path. 5 6pub use crate::sse::{SseEvent, SseParser, SseStream};