rython-task-bot-v2/widget/config.js
2026-06-10 16:06:26 +10:00

34 lines
439 B
JavaScript

"use strict";
const configs = (function () {
const streamerBotSettings = {
host: "127.0.0.1",
port: 6968,
endpoint: "/",
};
const commands = [
"!taskhelp",
"!add",
"!edit",
"!done",
"!remove",
"!focus",
"!clearmydone",
];
const twitchSettings = {
autoUserColor: true
}
const kickSettings = {
autouserColor: true
}
return {
streamerBotSettings,
commands,
twitchSettings,
kickSettings
};
})();