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-07-26 23:15:48 -04:00
|
|
|
$app->group('/ufs', function($app) {
|
|
|
|
$app->post('[/]', [Money::class, 'updateUfs']);
|
|
|
|
$app->get('[/]', [Money::class, 'ufs']);
|
|
|
|
});
|
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']);
|
|
|
|
});
|