1
2
3
4
5
6
7
8
9
10
11
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.

mod proto;

#[cfg(any(feature = "protobuf-codec", feature = "protobufv3-codec"))]
pub use proto::protobuf::*;

#[cfg(feature = "prost-codec")]
pub use proto::prost::*;

pub mod util;