(req, res)
| 34 | } |
| 35 | |
| 36 | const getCategories = async (req, res) => { |
| 37 | const categories = await service.getCategories(); |
| 38 | res.send(categories); |
| 39 | } |
| 40 | |
| 41 | const getAdvancedStats = async (req, res) => { |
| 42 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected