Files
crypto/frontend/resources/routes/web/coins.php
2021-06-28 23:15:13 -04:00

12 lines
266 B
PHP

<?php
use ProVM\Crypto\Common\Controller\Coins;
$app->group('/coins', function($app) {
$app->get('/add', [Coins::class, 'add']);
$app->get('[/]', Coins::class);
});
$app->group('/coin/{coin_id}', function($app) {
$app->get('[/]', [Coins::class, 'get']);
});