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