This commit is contained in:
Juan Pablo Vial
2025-05-12 19:46:31 -04:00
parent f14cdd2730
commit 95a6aa96e9
3 changed files with 46 additions and 0 deletions

View File

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