Files
2025-10-02 10:33:06 +08:00

14 lines
187 B
PHP
Executable File

<?php
namespace app\admin\controller;
use app\Rest;
use think\App;
use think\facade\View;
class Index extends Rest
{
public function index()
{
return View::fetch();
}
}