mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
14 lines
229 B
PHP
14 lines
229 B
PHP
<?php
|
|
|
|
namespace Lop\LopOpensdkPhp;
|
|
|
|
interface Client
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
* @param Options $options
|
|
* @return Response
|
|
* @throws SdkException
|
|
*/
|
|
function execute($request, $options);
|
|
} |