Files
Smart-Farm/app/admin/controller/Index.php
2025-12-22 14:32:54 +08:00

14 lines
187 B
PHP

<?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();
}
}