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