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