13 lines
145 B
PHP
13 lines
145 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Server\SInterface;
|
||
|
|
|
||
|
|
use Swoole\Http\Response;
|
||
|
|
|
||
|
|
interface DownloadInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
public function dispatch(Response $response);
|
||
|
|
|
||
|
|
}
|