This commit is contained in:
2025-11-17 19:41:40 +08:00
parent 279f948314
commit e81a475bba
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import './index.ts'
import { main } from './task.ts';
// 每2个小时执行一次更新任务
cron.schedule('0 */2 * * *', async () => {
cron.schedule('0 */2 * * *', () => {
main()
});