(tls: &TlsOptions)
| 441 | } |
| 442 | |
| 443 | fn interceptor_from_tls(tls: &TlsOptions) -> Result<EdgeAuthInterceptor> { |
| 444 | EdgeAuthInterceptor::new(tls.oidc_token.as_deref(), tls.edge_token.as_deref()) |
| 445 | } |
| 446 | |
| 447 | pub async fn grpc_inference_client(server: &str, tls: &TlsOptions) -> Result<GrpcInferenceClient> { |
| 448 | let channel = build_channel(server, tls).await?; |
no outgoing calls
no test coverage detected