thaldrin/src/modules/general/info.ts

19 lines
484 B
TypeScript

import Command from '../../handler/structures/Command';
export = class Info extends Command {
constructor() {
super({
name: "info",
description: "Show Information about the Bot",
aliases: ["about"],
// module: "General",
cooldown: 0,
AuthorPermissions: ["MANAGE_GUILD"],
dev: false
})
}
async command(ctx: any) {
return console.log("Information Command")
}
}