Full Reset

This commit is contained in:
Rodrigo Emanuel
2025-07-25 22:26:24 -03:00
parent 3c95ac2361
commit 48c6dfc6f4
29 changed files with 171 additions and 8113 deletions

25
js/sb.js Normal file
View File

@@ -0,0 +1,25 @@
/* ----------------------- */
/* STREAMER.BOT CONNECTION */
/* ----------------------- */
const streamerBotServerAddress = "127.0.0.1";
const streamerBotServerPort = "8080";
const streamerBotClient = new StreamerbotClient({
host: streamerBotServerAddress,
port: streamerBotServerPort,
onConnect: (data) => {
console.log(`Streamer.bot successfully connected!`)
console.debug(data);
notifySuccess({
title: 'Connected to Streamer.bot',
text: ``
});
},
/*onDisconnect: () => {
console.error(`Streamer.bot disconnected`);
}*/
});