添加每日清除火热值脚本

This commit is contained in:
2025-08-11 17:44:54 +08:00
parent ada241ce02
commit fbe214c9a4
2 changed files with 50 additions and 0 deletions

View File

@@ -24,4 +24,11 @@ class Cron
$cron = new \app\cron\controller\TenSeconds();
$cron->index();
}
//每天执行
public function DaySeconds()
{
$cron = new \app\cron\controller\DaySeconds();
$cron->index();
}
}