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) • 477 B
JavaScript
/**
* twitch-chat-bot
*
* Copyright (c) 2020 WildcardSearch
*/
const errorCategories = [{
key: "block-list",
title: "Block List",
}];
const errorCodes = [];
const warningCodes = [{
key: "ERROR_BLOCK_LIST_ISBLOCKED_BAD_INFO_USERNAME",
message: "failed to do block check; missing/invalid username",
category: "block-list",
}];
module.exports = {
errorCategories: errorCategories,
errorCodes: errorCodes,
warningCodes: warningCodes,
};