mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-28 10:05:25 -05:00
19 lines
461 B
PHP
19 lines
461 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums;
|
|
|
|
enum ProcessingQueue: string
|
|
{
|
|
case Default = 'default';
|
|
case High = 'high';
|
|
case StandardDeployment = 'standardDeployment';
|
|
case ProductionDeployment = 'productionDeployment';
|
|
|
|
case WorkerDefault = 'workerDefault';
|
|
case WorkerHigh = 'workerHigh';
|
|
case WorkerStandardDeployment = 'workerStandardDeployment';
|
|
case WorkerProductionDeployment = 'workerProductionDeployment';
|
|
}
|