mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-06-25 17:07:12 +08:00
15 lines
297 B
PHP
15 lines
297 B
PHP
<?php
|
|
|
|
namespace Convoy\Enums\Server;
|
|
|
|
enum State: string
|
|
{
|
|
case STOPPED = 'stopped';
|
|
case RUNNING = 'running';
|
|
|
|
/* Synthetic states (not part of Proxmox but used in Convoy) */
|
|
case STOPPING = 'stopping';
|
|
case STARTING = 'starting';
|
|
case SHUTTING_DOWN = 'shutting_down';
|
|
}
|