1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
// Copyright 2021 TiKV Project Authors. Licensed under Apache-2.0.

mod export;
pub use export::*;

#[cfg(feature = "cloud-storage-grpc")]
mod grpc_service;
#[cfg(feature = "cloud-storage-grpc")]
pub use grpc_service::new_service;

#[cfg(feature = "cloud-storage-dylib")]
mod dylib;

#[cfg(any(feature = "cloud-storage-grpc", feature = "cloud-storage-dylib"))]
mod request;