Program Commit

This commit is contained in:
2025-10-02 17:31:49 -04:00
parent fd73be0efd
commit 1341b325ee
39 changed files with 21396 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
const { ActivityType } = require('discord.js');
module.exports = {
name: 'ready',
once: true,
execute(client) {
console.log('ECS - Full Stack Bot Online!');
client.user.setActivity('ehchad', {
type: ActivityType.Streaming,
url: 'https://twitch.tv/ehchad'
});
},
};