uiharu/src/IApi.php

9 lines
146 B
PHP

<?php
namespace Uiharu;
use Index\Http\Routing\IRouteHandler;
interface IApi extends IRouteHandler {
function match(string $url): string;
}