Files
oficial/app/resources/routes/api/queue.php

7 lines
127 B
PHP
Raw Normal View History

2025-05-12 19:46:31 -04:00
<?php
use Incoviba\Controller\API\Queues;
$app->group('/queue', function($app) {
$app->get('/run[/]', Queues::class);
});