discord_bot/commands/owo.js
2021-07-10 20:52:46 +02:00

9 lines
224 B
JavaScript

const owo = require('@zuzak/owo')
module.exports = {
name: 'owo',
description: 'Translate to furry/weeb language',
execute({message, args}) {
let msg = args.join(" ")
message.channel.send(owo.translate(msg));
}
};