Files
Cloudreve/application/index/controller/Cron.php
T
2018-02-04 12:58:07 +08:00

18 lines
264 B
PHP

<?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();
}
}