()
| 80 | } |
| 81 | |
| 82 | fn dstack_agent() -> Result<DstackGuestClient<PrpcClient>> { |
| 83 | let address = dstack_types::dstack_agent_address(); |
| 84 | let http_client = PrpcClient::new(address); |
| 85 | Ok(DstackGuestClient::new(http_client)) |
| 86 | } |
| 87 | |
| 88 | async fn maybe_gen_certs(config: &Config, tls_config: &TlsConfig) -> Result<()> { |
| 89 | if config.rpc_domain.is_empty() { |
no test coverage detected