Files
oficial/app/resources/routes/contabilidad/centros_costos.php

7 lines
142 B
PHP
Raw Normal View History

2024-01-09 23:35:35 -03:00
<?php
use Incoviba\Controller\CentrosCostos;
$app->group('/centros_costos', function($app) {
$app->get('[/]', CentrosCostos::class);
});