10 lines
154 B
PHP
10 lines
154 B
PHP
|
<?php
|
||
|
namespace Uiharu;
|
||
|
|
||
|
use Index\Http\HttpFx;
|
||
|
|
||
|
interface IApi {
|
||
|
function match(string $url): string;
|
||
|
function register(HttpFx $router): void;
|
||
|
}
|