mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
14 lines
205 B
PHP
14 lines
205 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface ProtocolInterface
|
|
{
|
|
public function getFlags(): array;
|
|
/**
|
|
* 处理并生成配置
|
|
*/
|
|
public function handle();
|
|
}
|