mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 04:59:30 +00:00
9 lines
106 B
PHP
9 lines
106 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum ActivityTypes: string
|
|
{
|
|
case COOLIFY_PROCESS = 'coolify_process';
|
|
}
|