feat: topic ssd
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 5s

This commit is contained in:
2026-05-06 10:26:53 +08:00
parent b75a159d70
commit 12ff8aee9d
3 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?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');
}
}

View File