mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
19 lines
469 B
PHP
19 lines
469 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace App\Enums;
|
||
|
|
|
||
|
|
enum ProcessingQueue: string
|
||
|
|
{
|
||
|
|
case Default = 'default';
|
||
|
|
case High = 'high';
|
||
|
|
case StandardDeployment = 'standard-deployment';
|
||
|
|
case ProductionDeployment = 'production-deployment';
|
||
|
|
|
||
|
|
case WorkerDefault = 'worker-default';
|
||
|
|
case WorkerHigh = 'worker-high';
|
||
|
|
case WorkerStandardDeployment = 'worker-standard-deployment';
|
||
|
|
case WorkerProductionDeployment = 'worker-production-deployment';
|
||
|
|
}
|