Files
kiri-core/HttpServer/IInterface/Service.php
T

15 lines
120 B
PHP
Raw Normal View History

2020-09-02 11:38:47 +08:00
<?php
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-09-02 11:38:47 +08:00
namespace HttpServer\IInterface;
interface Service
{
public function onInit();
}