11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
module.exports = {
|
|
name: "login",
|
|
description: "Logs the bot in.",
|
|
type: "login",
|
|
|
|
async execute() {
|
|
const bot = require("../../index.js");
|
|
console.log("Logged in as " + bot.username + "!");
|
|
}
|
|
};
|