(host: string)
| 90 | } |
| 91 | |
| 92 | function formatHostForUrl(host: string): string { |
| 93 | return host.includes(':') && !host.startsWith('[') ? `[${host}]` : host; |
| 94 | } |
| 95 | |
| 96 | export function renderProxyStartup( |
| 97 | startup: ProxyStartup, |
no test coverage detected
searching dependent graphs…