rython-task-bot-v2/widgets/vertical/config.js
2026-08-02 15:46:47 +10:00

37 lines
522 B
JavaScript

"use strict";
export const configs = (function () {
const streamerBotSettings = {
host: "127.0.0.1",
port: 8080,
endpoint: "/",
};
const commands = [
"!taskhelp",
"!add",
"!edit",
"!done",
"!remove",
"!focus",
"!clearmydone",
];
const userColorSettings = {
autoUserColor: true,
};
const emoteSettings = {
enabled: true,
providers: ["7tv", "bttv", "ffz"],
size: "1x",
cacheHours: 24,
};
return {
streamerBotSettings,
commands,
userColorSettings,
emoteSettings,
};
})();