2021-07-27 22:29:56 -04:00
|
|
|
<?php
|
|
|
|
use Contabilidad\Common\Controller\Base;
|
|
|
|
|
2021-12-06 22:10:41 -03:00
|
|
|
$app->get('/key/generate[/]', [Base::class, 'generate_key']);
|
|
|
|
$app->get('/balance[/]', [Contabilidad\Common\Controller\TiposCategorias::class, 'balance']);
|
2021-12-20 22:43:43 -03:00
|
|
|
$app->get('/info', [Base::class, 'info']);
|
2021-07-27 22:29:56 -04:00
|
|
|
$app->get('/', Base::class);
|