megaphone/
lib.rs

1//! Reverse proxy for long running requests and server streaming.
2//!
3//! Provides client and server components for asynchronous communication (i.e. from server to client)
4
5pub mod dto;
6pub mod model;
7#[cfg(feature = "client")]
8pub mod client;