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