rs-zero 0.1.1

Rust-first microservice framework inspired by go-zero engineering practices
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! RPC helpers built on tonic.

pub mod client;
pub mod config;
pub mod interceptor;
pub mod server;

pub use client::{connect_channel, endpoint_from_config};
pub use config::{RpcClientConfig, RpcServerConfig};
pub use interceptor::{REQUEST_ID_METADATA, request_id_interceptor};
pub use server::serve_health_with_shutdown;