mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 01:41:36 +00:00
13 lines
149 B
PHP
13 lines
149 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class SshKeyStatus
|
|
{
|
|
const ADDING = 'adding';
|
|
|
|
const ADDED = 'added';
|
|
|
|
const DELETING = 'deleting';
|
|
}
|