Files
oficial/app/resources/routes/97_search.php

8 lines
177 B
PHP
Raw Normal View History

2023-09-28 21:05:16 -03:00
<?php
use Incoviba\Controller\Search;
$app->group('/search', function($app) {
$app->get('[/{query}[/{tipo}[/]]]', Search::class);
$app->post('[/]', Search::class);
});