mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-30 20:55:32 +08:00
19 lines
326 B
PHP
19 lines
326 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace app\mcp\service;
|
||
|
||
use base\mcp\service\Psr16ThinkCacheBase;
|
||
|
||
/**
|
||
* MCP 会话 PSR-16 适配器(包装 Cache::store('mcp_session')).
|
||
*/
|
||
class Psr16ThinkCache extends Psr16ThinkCacheBase
|
||
{
|
||
protected function defaultStore(): string
|
||
{
|
||
return 'mcp_session';
|
||
}
|
||
}
|