grpcio_proto/
lib.rs

1// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
2
3mod proto;
4
5#[cfg(any(feature = "protobuf-codec", feature = "protobufv3-codec"))]
6pub use proto::protobuf::*;
7
8#[cfg(feature = "prost-codec")]
9pub use proto::prost::*;
10
11pub mod util;