shiracdn/application/index/controller/Index.php

12 lines
168 B
PHP

<?php
namespace app\index\controller;
use \think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch();
}
}