Files
oficial/app/resources/routes/api/money.php

10 lines
284 B
PHP
Raw Normal View History

2023-11-22 19:08:19 -03:00
<?php
use Incoviba\Controller\API\Money;
$app->group('/money', function($app) {
$app->post('/ipc[/]', [Money::class, 'ipc']);
2023-11-29 20:09:08 -03:00
$app->post('/uf[/]', [Money::class, 'uf']);
2024-05-16 21:23:24 -04:00
$app->post('/many[/]', [Money::class, 'getMany']);
2023-11-22 19:08:19 -03:00
$app->post('[/]', [Money::class, 'get']);
});