TravBot-v3/src/commands/fun/owoify.ts

13 lines
385 B
TypeScript

/// @ts-nocheck
import Command from "../../core/command";
import {getContent} from "../../core/libd";
export default new Command({
description: "OwO-ifies the input.",
async run($) {
let url = new URL(`https://nekos.life/api/v2/owoify?text=${$.args.join(" ")}`);
const content = await getContent(url.toString());
$.channel.send(content.owo);
}
});