thaldrin/src/modules/general/info.ts

20 lines
536 B
TypeScript

import { Context } from '../../utils/types';
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: 2,
// AuthorPermissions: ["MANAGE_GUILD"],
dev: false
})
}
async command(ctx: Context) {
return console.log("Information Command")
}
}