app-routes.js 165 B

12345
  1. const asyncHandler = require('express-async-handler')
  2. const C = require('./controllers')
  3. module.exports = (app) => {
  4. app.get('/api/statistics', C.statistics.get)
  5. }