thaldrin/src/modules/general/info.ts

20 lines
536 B
TypeScript
Raw Normal View History

2021-04-08 22:42:39 +00:00
import { Context } from '../../utils/types';
2021-04-04 15:17:46 +00:00
import Command from '../../handler/structures/Command';
export = class Info extends Command {
constructor() {
super({
2021-04-08 00:43:17 +00:00
name: "info",
2021-04-04 15:17:46 +00:00
description: "Show Information about the Bot",
aliases: ["about"],
// module: "General",
2021-04-09 13:18:34 +00:00
cooldown: 2,
// AuthorPermissions: ["MANAGE_GUILD"],
2021-04-04 15:17:46 +00:00
dev: false
})
}
2021-04-08 22:42:39 +00:00
async command(ctx: Context) {
2021-04-04 15:17:46 +00:00
return console.log("Information Command")
}
}