All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 4s
23 lines
289 B
PHP
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');
|
|
}
|
|
}
|