start with wolf command

This commit is contained in:
Lio Young 2021-04-10 23:28:17 +02:00
parent 9f2bb56912
commit 02bb7f97c1
No known key found for this signature in database
GPG Key ID: 789795A11879E169
1 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,6 @@
import yiff from '../../utils/yiff';
import Command from '../../handler/structures/Command';
import { Context } from '../../utils/types';
export = class Wolf extends Command {
constructor() {
@ -10,7 +12,8 @@ export = class Wolf extends Command {
})
}
async command(ctx: any) {
return console.log("Wolf Command")
async command(ctx: Context) {
let image = await yiff.yiffy('animals', "wolf")
console.log(image)
}
}