(req, res)
| 8 | |
| 9 | const httpServer = new HttpServer((app) => { |
| 10 | const handler: ExpressRequestHandler = (req, res) => { |
| 11 | res.status(500).send('') |
| 12 | } |
| 13 | app.get('/book/:bookId', handler) |
| 14 | app.post('/login', handler) |
| 15 | }) |
nothing calls this directly
no test coverage detected
searching dependent graphs…