(sandbox: &str, service: &str)
| 39 | } |
| 40 | |
| 41 | pub fn endpoint_key(sandbox: &str, service: &str) -> String { |
| 42 | if service.is_empty() { |
| 43 | sandbox.to_string() |
| 44 | } else { |
| 45 | format!("{sandbox}--{service}") |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | pub fn endpoint_url( |
| 50 | config: &openshell_core::Config, |
no test coverage detected