1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Generic client implementation.
//!
//! This module contains the low level components to build a gRPC client. It
//! provides a codec agnostic gRPC client dispatcher and a decorated tower
//! service trait.
//!
//! This client is generally used by some code generation tool to provide stubs
//! for the gRPC service. Thusly, they are a bit cumbersome to use by hand.

mod grpc;
mod service;

pub use self::grpc::Grpc;
pub use self::service::GrpcService;