Files
kiri-core/http-server/SInterface/DownloadInterface.php
T

13 lines
145 B
PHP
Raw Normal View History

2021-09-07 16:14:44 +08:00
<?php
namespace Server\SInterface;
use Swoole\Http\Response;
interface DownloadInterface
{
public function dispatch(Response $response);
}