mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
15 lines
200 B
PHP
15 lines
200 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class OperatingSystem
|
|
{
|
|
const UBUNTU18 = 'ubuntu_18';
|
|
|
|
const UBUNTU20 = 'ubuntu_20';
|
|
|
|
const UBUNTU22 = 'ubuntu_22';
|
|
|
|
const UBUNTU24 = 'ubuntu_24';
|
|
}
|