You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
249 B

  1. //Imports
  2. const { messageAllThreads } = require('../../world/threadManager');
  3. //Exports
  4. module.exports = async (cpnSocial, eventName) => {
  5. messageAllThreads({
  6. threadModule: 'eventManager',
  7. method: 'startEventByCode',
  8. data: eventName
  9. });
  10. };