mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
15 lines
181 B
PHP
15 lines
181 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class BackupStatus
|
|
{
|
|
const READY = 'ready';
|
|
|
|
const RUNNING = 'running';
|
|
|
|
const FAILED = 'failed';
|
|
|
|
const DELETING = 'deleting';
|
|
}
|