thaldrin/src/discord/commands/testing.ts

20 lines
472 B
TypeScript
Raw Normal View History

2021-10-17 16:39:40 +00:00
import { Context } from "../../utils/types"
import { Command } from "../../modules/eu/src/index"
export = class TestingCommand extends Command {
constructor() {
super({
name: "testing",
aliases: ["t"],
})
// console.log(this)
}
async run(context: Context): Promise<any> {
// console.log(context)
// console.log(this.nsfw)
console.log("testing")
return "Generic command"
}
}