mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 12:33:03 +00:00
12 lines
189 B
PHP
12 lines
189 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
enum ProcessStatus: string
|
|
{
|
|
case HOLDING = 'holding';
|
|
case IN_PROGRESS = 'in_progress';
|
|
case FINISHED = 'finished';
|
|
case ERROR = 'error';
|
|
}
|