15 lines
176 B
PHP
15 lines
176 B
PHP
<?php
|
|
|
|
namespace Kiri\Rpc;
|
|
|
|
use Psr\Http\Client\ClientInterface;
|
|
|
|
|
|
/**
|
|
* @mixin JsonRpcTransporter
|
|
*/
|
|
interface RpcClientInterface extends ClientInterface
|
|
{
|
|
|
|
}
|