Files
kiri-http-server/Abstracts/Server.php
T
2023-04-17 01:29:43 +08:00

29 lines
331 B
PHP

<?php
namespace Kiri\Server\Abstracts;
use Exception;
use Kiri;
use Psr\Log\LoggerInterface;
use Kiri\Di\Inject\Container;
/**
* Class Server
* @package Server\Abstracts
*/
abstract class Server
{
/**
* Server constructor.
* @throws Exception
*/
public function __construct()
{
}
}