const Command = require("../../classes/command.js"); class InviteCommand extends Command { async run() { return "You can invite me to your server here: "; } static description = "Gets my invite link"; static aliases = ["botinfo", "credits"]; } module.exports = InviteCommand;