mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-17 21:20:29 +00:00
11 lines
160 B
PHP
11 lines
160 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Project\Application;
|
|
|
|
use Livewire\Component;
|
|
|
|
class EnvironmentVariables extends Component
|
|
{
|
|
public array $envs = [];
|
|
}
|