9 lines
269 B
PHP
9 lines
269 B
PHP
<?php
|
|
use Incoviba\Controller\Contabilidad;
|
|
use Incoviba\Controller\Contabilidad\Tesoreria;
|
|
|
|
$app->group('/tesoreria', function($app) {
|
|
$app->get('/import[/]', [Tesoreria::class, 'import']);
|
|
$app->get('[/[{fecha}[/]]]', [Contabilidad::class, 'tesoreria']);
|
|
});
|