Files
money/resources/routes/api/uf/value.php
2023-06-16 00:53:21 +00:00

8 lines
192 B
PHP

<?php
use Aldarien\Money\Common\Controller\API\UF\Value;
$app->group('/value', function($app) {
$app->get('/{fecha}', [Value::class, 'fecha']);
$app->get('[/]', Value::class);
});