glhcp/server/vendor/yly-openapi/yly-openapi-sdk/Lib/Api/RpcService.php

17 lines
260 B
PHP
Raw Normal View History

2023-08-10 06:59:52 +00:00
<?php
namespace App\Api;
use App\Config\YlyConfig;
use App\Protocol\YlyRpcClient;
class RpcService{
protected $client;
public function __construct($token, YlyConfig $config)
{
$this->client = new YlyRpcClient($token, $config);
}
}