(method: string, params: any)
| 34 | } |
| 35 | |
| 36 | protected async handleRequest(method: string, params: any): Promise<any> { |
| 37 | switch (method) { |
| 38 | case "app.exposeUrl": |
| 39 | return this.urlExposer(params.url as string); |
| 40 | default: |
| 41 | throw new Error(`Unknown request ${method}`); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // TODO: Can we code-gen all this like the analysis server? |
| 46 |
no outgoing calls
no test coverage detected