test_service d3170b4d1c 1
2023-12-01 15:43:29 +08:00

17 lines
187 B
PHP
Executable File

<?php
namespace app\user\controller;
use think\facade\View;
/**
* 首页
*/
class Index extends Controller
{
public function index()
{
return View::fetch();
}
}