muxio_rpc_service_endpoint/lib.rs
1// #[cfg(doctest)]
2// doc_comment::doctest!("../README.md");
3
4mod endpoint;
5pub use endpoint::*;
6
7mod endpoint_interface;
8pub use endpoint_interface::*;
9
10pub mod error;
11
12mod with_handlers_trait;
13pub use with_handlers_trait::{WithHandlers, WithStreamHandlers};
14
15mod endpoint_utils;
16pub use endpoint_utils::*;
17
18#[cfg(feature = "tokio_support")]
19pub mod client_read_channel;