use qcs_api_client_common::ClientConfiguration;
use qcs_api_client_grpc::client_configuration::TokenError;
use qcs_api_client_grpc::services::translation::translation_client::TranslationClient;
use qcs_api_client_grpc::tonic::{
get_channel, parse_uri, wrap_channel_with, wrap_channel_with_retry, Error,
};
#[cfg(feature = "grpc-web")]
use qcs_api_client_grpc::tonic::wrap_channel_with_grpc_web;
#[allow(dead_code)]
async fn build_client() -> Result<(), Error<TokenError>> {
let config = ClientConfiguration::load_default()?;
let service = wrap_channel_with_retry(wrap_channel_with(get_channel(parse_uri("")?)?, config));
#[cfg(feature = "grpc-web")]
let service = wrap_channel_with_grpc_web(service);
let _client = TranslationClient::new(service);
Ok(())
}