Files
money/app/resources/routes/currencies.php

12 lines
303 B
PHP
Raw Normal View History

2021-03-15 17:42:56 -03:00
<?php
use ProVM\Money\Common\Controller\Currencies;
$app->group('/currencies', function($app) {
$app->post('/add[/]', [Currencies::class, 'add']);
$app->get('[/]', Currencies::class);
});
$app->group('/currency/{currency_id}', function($app) {
$app->get('[/]', [Currencies::class, 'show']);
});