Listado de brokers

This commit is contained in:
Juan Pablo Vial
2025-03-06 20:34:43 -03:00
parent 18dd8c4ec0
commit c7ee440e03
6 changed files with 226 additions and 0 deletions

View File

@ -0,0 +1,6 @@
<?php
use Incoviba\Controller\Proyectos\Brokers;
$app->group('/brokers', function($app) {
$app->get('[/]', [Brokers::class, 'projects']);
});