Files
kiri-core/HttpServer/IInterface/Service.php
T
2020-10-29 18:17:25 +08:00

15 lines
120 B
PHP

<?php
declare(strict_types=1);
namespace HttpServer\IInterface;
interface Service
{
public function onInit();
}