Files
oficial/app/resources/routes/api/money.php
2023-11-22 19:08:19 -03:00

8 lines
181 B
PHP

<?php
use Incoviba\Controller\API\Money;
$app->group('/money', function($app) {
$app->post('/ipc[/]', [Money::class, 'ipc']);
$app->post('[/]', [Money::class, 'get']);
});