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

16 lines
576 B
TypeScript
Raw Normal View History

import {NamedCommand, RestCommand} from "onion-lasers";
import {getContent} from "../../lib";
2021-03-31 03:22:25 +00:00
import {URL} from "url";
2020-12-15 01:44:28 +00:00
export default new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "OwO-ifies the input.",
run: "You need to specify some text to owoify.",
any: new RestCommand({
async run({send, combined}) {
let url = new URL(`https://nekos.life/api/v2/owoify?text=${combined}`);
const content = (await getContent(url.toString())) as any; // Apparently, the object in question is {owo: string}.
send(content.owo);
}
})
2020-12-15 01:44:28 +00:00
});