11 lines
166 B
PHP

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