Files
orico-official-website/app/index/controller/TopicSsd.php
jsasg 251a13c368
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 4s
feat: topic ssd
2026-05-06 10:28:46 +08:00

23 lines
289 B
PHP

<?php
declare (strict_types = 1);
namespace app\index\controller;
use think\facade\View;
use think\Request;
class TopicSsd
{
/**
* 显示资源列表
*
* @return \think\Response
*/
public function index()
{
return View::fetch('index');
}
}