13 lines
97 B
PHP
13 lines
97 B
PHP
<?php
|
|
|
|
namespace Kiri\Server;
|
|
|
|
interface SwooleServerInterface
|
|
{
|
|
|
|
|
|
public function start();
|
|
|
|
|
|
}
|