IYUUAutoReseed/app/Client/AbstractClientInterface.php
2020-01-18 10:27:27 +08:00

21 lines
265 B
PHP

<?php
/**
* Created by PhpStorm.
* User: Rhilip
* Date: 1/17/2020
* Time: 2020
*/
namespace IYUU\Client;
interface AbstractClientInterface
{
/**
* 查询Bittorrent客户端状态
*
* @return string
*/
public function status();
}