ChatLogic.php
339 字节
<?php
/**
* @remark :
* @name :ChatLogic.php
* @author :lyh
* @method :post
* @time :2025/4/1 14:37
*/
namespace App\Http\Logic\Bside\Gpt;
use App\Http\Logic\Bside\BaseLogic;
class ChatLogic extends BaseLogic
{
public function __construct()
{
parent::__construct();
$this->model = new Count();
}
}