Files

16 lines
230 B
PHP
Raw Permalink Normal View History

2022-09-23 18:55:46 +08:00
<?php
namespace Kiri\Rpc;
interface JsonRpcTransporterInterface
{
/**
* @param string $content
* @param string $service
* @return string|bool
*/
public function push(string $content, string $service): string|bool;
}