12 lines
266 B
PHP
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']);
|
|
});
|