mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-30 20:55:32 +08:00
15 lines
227 B
PHP
15 lines
227 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace app\mcp\controller;
|
||
|
||
use base\mcp\controller\IndexBase;
|
||
|
||
/**
|
||
* MCP 协议端点(/mcp,无中间件:免 Session/CSRF,先例 app/tools/).
|
||
*/
|
||
class Index extends IndexBase
|
||
{
|
||
}
|