Skip to main content

rs_zero/rpc/
mod.rs

1//! RPC helpers built on tonic.
2
3pub mod client;
4pub mod config;
5pub mod interceptor;
6pub mod server;
7
8pub use client::{connect_channel, endpoint_from_config};
9pub use config::{RpcClientConfig, RpcServerConfig};
10pub use interceptor::{REQUEST_ID_METADATA, request_id_interceptor};
11pub use server::serve_health_with_shutdown;