23 lines
471 B
PHP
23 lines
471 B
PHP
<?php
|
|
|
|
/**
|
|
* 功能文件
|
|
* @Descripttion : FOXCMS 是一款高效的 PHP 多端跨平台内容管理系统
|
|
* @Author : FoxCMS Team
|
|
* @Date : 2023/12/13 18:17
|
|
* @version : V1.08
|
|
* @copyright : ©2021-现在 贵州黔狐科技股份有限公司 版权所有
|
|
* @LastEditTime : 2023/12/13 18:17
|
|
*/
|
|
|
|
namespace app\auth\controller;
|
|
|
|
use app\common\controller\AdminBase;
|
|
|
|
class No extends AdminBase
|
|
{
|
|
public function index()
|
|
{
|
|
return view();
|
|
}
|
|
} |