Files
kiri-core/http-server/IInterface/Task.php
T

15 lines
123 B
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
namespace HttpServer\IInterface;
interface Task
{
public function getParams();
public function handler();
}