(req, res)
| 340 | const listBackendsRoute = `/backends`; |
| 341 | |
| 342 | const httpsHandler: express.RequestHandler = (req, res) => { |
| 343 | const work: Work = () => { |
| 344 | return this.handleHttpsTrigger(req, res); |
| 345 | }; |
| 346 | work.type = `${req.path}-${new Date().toISOString()}`; |
| 347 | this.workQueue.submit(work); |
| 348 | }; |
| 349 | |
| 350 | const multicastHandler: express.RequestHandler = (req: express.Request, res) => { |
| 351 | const projectId = req.params.project_id; |