Try Tokens rout

This commit is contained in:
Juan Pablo Vial
2024-08-27 14:49:27 -04:00
parent 85b529c22d
commit 55d879274c

View File

@ -0,0 +1,6 @@
<?php
use Incoviba\Controller\API\Tokens;
$app->group('/tokens', function($app) {
$app->get('/try[/]', Tokens::class . ':try');
});