(_req: Request, res: Response)
| 31 | tags = [APITags.browserAPI]; |
| 32 | |
| 33 | async handler(_req: Request, res: Response): Promise<void> { |
| 34 | const browserManage = this.browserManager(); |
| 35 | return jsonResponse(res, 200, await browserManage.getJSONList()); |
| 36 | } |
| 37 | } |
nothing calls this directly
no test coverage detected