(req: Request, res: Response, next: NextFunction)
| 12 | } |
| 13 | |
| 14 | public async GetHealth(req: Request, res: Response, next: NextFunction) { |
| 15 | try { |
| 16 | res.status(200).send({ |
| 17 | status: 'okay', |
| 18 | }); |
| 19 | } catch (e) { |
| 20 | next(e); |
| 21 | } |
| 22 | } |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected