module.exports = Self => { Self.remoteMethod('send', { description: 'Send notifications from queue', accessType: 'WRITE', returns: { type: 'object', root: true }, http: { path: `/send`, verb: 'POST' } }); Self.send = async() => { }; };