mirror of
https://github.com/cloudreve/Cloudreve.git
synced 2024-04-21 12:31:40 +00:00
18 lines
264 B
PHP
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();
|
|
}
|
|
|
|
}
|