'use strict'; const { CrudService } = require('naf-framework-mongoose/lib/service'); class MessageService extends CrudService { constructor(ctx) { super(ctx, 'message'); this.model = this.ctx.model.Message; } } module.exports = MessageService;