1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
tonic::include_proto!("product");
use super::metadata::ClientInterceptor;
use tonic::codegen::InterceptedService;
use tonic::transport::Channel;
pub type ProductsInterceptedClient =
products_client::ProductsClient<InterceptedService<Channel, ClientInterceptor>>;
pub async fn make_client(
endpoint: String,
tenant: String,
requestor: String,
) -> ProductsInterceptedClient {
let channel = Channel::from_shared(endpoint.clone())
.unwrap()
.connect()
.await
.unwrap();
products_client::ProductsClient::with_interceptor(
channel,
ClientInterceptor::new(&tenant, &requestor),
)
}