You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cloudreve/application/index/controller/Cron.php

18 lines
264 B

<?php
namespace app\index\controller;
use think\Controller;
use think\Db;
use think\Request;
use \app\index\model\CronHandler;
use think\Session;
class Cron extends Controller{
public function index(){
$cornObj = new CronHandler();
$cornObj->Doit();
}
}