mirror of
https://github.com/liyunze-coding/rython-task-bot-v2.git
synced 2026-09-22 07:24:27 +00:00
37 lines
515 B
JavaScript
37 lines
515 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 userColorSettings = {
|
|
autoUserColor: true,
|
|
};
|
|
|
|
const emoteSettings = {
|
|
enabled: true,
|
|
providers: ["7tv", "bttv", "ffz"],
|
|
size: "1x",
|
|
cacheHours: 24,
|
|
};
|
|
|
|
return {
|
|
streamerBotSettings,
|
|
commands,
|
|
userColorSettings,
|
|
emoteSettings,
|
|
};
|
|
})();
|