thaldrin/src/modules/info/stats.ts

22 lines
606 B
TypeScript
Raw Normal View History

2021-05-05 12:57:42 +00:00
import Command from '../../handler/structures/Command';
import { Context, Usage } from '../../utils/types';
import lingua from '../../utils/lingua';
2021-05-07 23:57:48 +00:00
import { MessageEmbed } from 'discord.js';
2021-05-05 12:57:42 +00:00
import CommandUsage from '../../utils/command.usage';
export = class Stats extends Command {
constructor() {
super({
name: "stats",
description: "See the Bot's Stats",
aliases: ["statistics"],
cooldown: 1,
})
}
async command(ctx: Context) {
let Stats = await CommandUsage(ctx.client.commands)
console.log(Stats)
2021-05-05 12:57:42 +00:00
}
}