mirror of
https://github.com/tiennm99/coolify.git
synced 2026-06-01 20:12:20 +00:00
10 lines
126 B
PHP
10 lines
126 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum ActivityTypes: string
|
|
{
|
|
case INSTANT = 'instant';
|
|
case DEPLOYMENT = 'deployment';
|
|
}
|