Files
crypto/backend/api/resources/routes/api/update.php
2021-06-28 23:15:13 -04:00

8 lines
213 B
PHP

<?php
use ProVM\Crypto\Common\Controller\Update;
$app->group('/update', function($app) {
$app->get('/register/{type:[0,1]}/{coin_id:[\d+]}', [Update::class, 'register']);
$app->get('[/]', Update::class);
});