7 lines
133 B
PHP
7 lines
133 B
PHP
<?php
|
|
use Incoviba\Controller\Proyectos\Brokers;
|
|
|
|
$app->group('/brokers', function($app) {
|
|
$app->get('[/]', Brokers::class);
|
|
});
|