mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 20:49:32 +00:00
10 lines
124 B
PHP
10 lines
124 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum ActivityTypes: string
|
|
{
|
|
case INLINE = 'inline';
|
|
case DEPLOYMENT = 'deployment';
|
|
}
|