Skip to main content

cdk_mint_rpc/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod proto;
4
5pub mod mint_rpc_cli;
6
7pub use proto::*;
8
9/// Type alias for the CdkMintClient that works with any tower service
10pub type CdkMintClient<S> = cdk_mint_client::CdkMintClient<S>;
11
12/// Type alias for CdkMintClient with the version header interceptor over a Channel
13pub type InterceptedCdkMintClient = cdk_mint_client::CdkMintClient<
14    tonic::codegen::InterceptedService<
15        tonic::transport::Channel,
16        cdk_common::grpc::VersionInterceptor,
17    >,
18>;