2021-07-27 22:29:56 -04:00
|
|
|
<?php
|
2022-08-08 22:36:04 -04:00
|
|
|
use Common\Controller\Cuentas;
|
2021-07-27 22:29:56 -04:00
|
|
|
|
2022-12-20 14:13:05 -03:00
|
|
|
$router = $app->getContainer()->get(\Common\Service\Router::class);
|
|
|
|
$router->setController($app->getContainer()->get(Cuentas::class));
|
|
|
|
$router->build();
|