UNPKG

kokkoro-plugin-kfc

Version:

vivo 50

13 lines (12 loc) 394 B
import { useCommand } from '@kokkoro/core'; export const metadata = { name: 'kfc', description: 'vivo 50', }; export default function KentuckyFriedChicken() { useCommand('/疯狂星期四', async (ctx) => { const { data } = await ctx.bot.request.get('https://kfc.yuki.sh'); const { success, message, text } = data; return success ? text : message; }); }