rython-task-bot-v2/widgets/streamer-only/config.js
2026-06-20 16:57:03 +10:00

37 lines
488 B
JavaScript

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