uiharu/src/IApi.php

9 lines
146 B
PHP
Raw Permalink Normal View History

<?php
namespace Uiharu;
2024-03-30 00:52:32 +00:00
use Index\Http\Routing\IRouteHandler;
2024-03-30 00:52:32 +00:00
interface IApi extends IRouteHandler {
function match(string $url): string;
}