mirror of
https://github.com/liyunze-coding/Chat-Task-Tic-Overlay.git
synced 2026-08-24 02:14:11 -05:00
13 lines
346 B
JavaScript
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,
|
|
};
|
|
})();
|