UNPKG

twitch-chat-bot

Version:

an attempt to provide a generic, but highly-configurable platform for developers intending to create Twitch chat bots in Node.js

20 lines (15 loc) 485 B
/** * twitch-chat-bot * * Copyright (c) 2020 WildcardSearch */ const EVENT_PRIORITY_LOW = 10; const EVENT_PRIORITY_DEFAULT = 100; const EVENT_PRIORITY_HIGH = 1000; const EVENT_PRIORITY_EXTERNAL_MODULE_MAX = EVENT_PRIORITY_HIGH-1; module.exports = { EVENT_PRIORITY_LOW: EVENT_PRIORITY_LOW, EVENT_PRIORITY_DEFAULT: EVENT_PRIORITY_DEFAULT, EVENT_PRIORITY_HIGH: EVENT_PRIORITY_HIGH, EVENT_PRIORITY_EXTERNAL_MODULE_MAX: EVENT_PRIORITY_EXTERNAL_MODULE_MAX, };