(origin: string, token: string)
| 100 | * logged by proxies. The Web UI reads it from `location.hash` after load. |
| 101 | */ |
| 102 | export function buildWebUrl(origin: string, token: string): string { |
| 103 | return buildOpenableUrl(origin, token); |
| 104 | } |
| 105 | |
| 106 | /** Build the `run` subcommand, mounted under a parent (`server` or top-level). */ |
| 107 | export function buildRunCommand(cmd: Command, options: { defaultOpen: boolean }): Command { |
no test coverage detected