2023-07-24 20:55:26 -04:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\Base;
|
|
|
|
|
2023-09-07 23:03:21 -03:00
|
|
|
$app->get('/construccion', [Base::class, 'construccion'])->setName('construccion');
|
2023-11-25 00:55:31 -03:00
|
|
|
$app->get('[/]', Base::class)->add($app->getContainer()->get(Incoviba\Middleware\Authentication::class));
|