Files
kiri-http-server/SInterface/OnDownloadInterface.php
T

13 lines
147 B
PHP
Raw Normal View History

2021-11-03 15:17:52 +08:00
<?php
namespace Server\SInterface;
use Swoole\Http\Response;
interface OnDownloadInterface
{
public function dispatch(Response $response);
}