10 lines
288 B
PHP
10 lines
288 B
PHP
|
<?php
|
||
|
use Incoviba\Controller\API\Contabilidad;
|
||
|
|
||
|
$app->group('/cartolas', function($app) {
|
||
|
$app->post('/procesar[/]', [Contabilidad::class, 'procesarCartola']);
|
||
|
});
|
||
|
$app->group('/cartola', function($app) {
|
||
|
$app->post('/exportar[/]', [Contabilidad::class, 'exportarCartola']);
|
||
|
});
|