8 lines
213 B
PHP
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);
|
|
});
|