import { definePlugin } from 'kivibot' // 通知的群 const pushGroups = [] export default definePlugin({ name: 'cron', version: '1.2.0', cron: [ ['0 0 6 * * *', async (ctx) => ctx.noticeGroups.call(ctx.bot, pushGroups, '起きて!起きて!起きて!')], ['0 0 12 * * *', async (ctx) => ctx.noticeGroups.call(ctx.bot, pushGroups, '食べて!食べて!食べて!')], ['0 0 0 * * *', async (ctx) => ctx.noticeGroups.call(ctx.bot, pushGroups, '寝て!寝て!寝て!')], ], })