1 2 3 4 5 6 7 8
class Events { async create(data, params) { return data; }; } module.exports = app => app.use('/events', new Events());