7 lines
127 B
PHP
7 lines
127 B
PHP
<?php
|
|
use Incoviba\Controller\API\Queues;
|
|
|
|
$app->group('/queue', function($app) {
|
|
$app->get('/run[/]', Queues::class);
|
|
});
|