xmtp_api_grpc/
grpc_client.rs

1mod client;
2pub use client::{ClientBuilder, GrpcClient, GrpcStream};
3
4xmtp_common::if_test! {
5    pub mod test;
6}
7
8pub type GrpcClientBuilder = client::ClientBuilder;
9
10xmtp_common::if_wasm! {
11    mod wasm;
12    pub use wasm::*;
13    pub type GrpcService = wasm::GrpcWebService;
14}
15
16xmtp_common::if_native! {
17    mod native;
18    pub use native::*;
19    pub type GrpcService = native::NativeGrpcService;
20}