Beautifying

This commit is contained in:
2023-04-24 23:38:33 +02:00
parent e2747dab3f
commit 3a3bb89635
40 changed files with 4010 additions and 3388 deletions

View File

@@ -1,10 +1,10 @@
module.exports = {
name: 'login',
description: 'Logs the bot in.',
type: 'login',
name: "login",
description: "Logs the bot in.",
type: "login",
async execute() {
const bot = require ('../../index.js');
console.log('Logged in as ' + bot.username + '!')
}
}
async execute() {
const bot = require("../../index.js");
console.log("Logged in as " + bot.username + "!");
}
};