Files
liyunze 0ac09ca957 fixed bugs and added new features
- updated README
- fixed username color bug
- added checkbox margin right
2023-03-21 16:01:09 +08:00

13 lines
346 B
JavaScript

const auth = (function () {
// Authentication and channels - required
const channel = "YOUR_CHANNEL_HERE"; // your channel
const username = "YOUR_BOT_ACCOUNT_HERE"; // bot account
const oauth = "OAUTH HERE"; // should be xxxxxxxxxxxx from the bot account, do NOT include the 'oauth:' part
return {
channel,
username,
oauth,
};
})();