7 lines
146 B
PHP
7 lines
146 B
PHP
|
<?php
|
||
|
$app->group('/inmobiliarias', function ($app) {
|
||
|
$app->get('[/]', function ($request, $response) {
|
||
|
return $response;
|
||
|
});
|
||
|
});
|