mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-07 00:42:34 +00:00
Add workers to servers (#547)
This commit is contained in:
22
app/Enums/WorkerStatus.php
Normal file
22
app/Enums/WorkerStatus.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
final class WorkerStatus
|
||||
{
|
||||
const RUNNING = 'running';
|
||||
|
||||
const CREATING = 'creating';
|
||||
|
||||
const DELETING = 'deleting';
|
||||
|
||||
const FAILED = 'failed';
|
||||
|
||||
const STARTING = 'starting';
|
||||
|
||||
const STOPPING = 'stopping';
|
||||
|
||||
const RESTARTING = 'restarting';
|
||||
|
||||
const STOPPED = 'stopped';
|
||||
}
|
Reference in New Issue
Block a user