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