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

27 lines (20 loc) 469 B
/** * twitch-chat-bot * * Copyright (c) 2020 WildcardSearch */ const errorCategories = [{ key: "dictionary", title: "Dictionary", }]; const errorCodes = []; const warningCodes = [{ key: "ERROR_DICTIONARY_ADD_ENTRIES_BAD_INFO", message: "failed to add dictionary entries; unsuitable info", category: "dictionary", }]; module.exports = { errorCategories: errorCategories, errorCodes: errorCodes, warningCodes: warningCodes, };