芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/strapi/lib/services/event-hub.js
/** * The event hub is Strapi's event control center. */ 'use strict'; const EventEmitter = require('events'); class EventHub extends EventEmitter {} /** * Expose a factory function instead of the class */ module.exports = function createEventHub(opts) { return new EventHub(opts); };