2023-07-25 17:03:57 -04:00
|
|
|
<?php
|
2023-10-11 09:03:44 -03:00
|
|
|
use Incoviba\Controller\API\Ventas\Cierres;
|
2023-07-25 17:03:57 -04:00
|
|
|
|
|
|
|
$app->group('/cierres', function($app) {
|
2023-10-11 09:03:44 -03:00
|
|
|
$app->get('/vigentes[/]', [Cierres::class, 'vigentes']);
|
2023-07-25 17:03:57 -04:00
|
|
|
$app->post('[/]', [Cierres::class, 'proyecto']);
|
|
|
|
});
|