mirror of
https://github.com/coollabsio/coolify.git
synced 2025-12-27 21:25:48 +00:00
7 lines
97 B
PHP
7 lines
97 B
PHP
<?php
|
|
|
|
$files = glob(__DIR__.'/helpers/*.php');
|
|
foreach ($files as $file) {
|
|
require $file;
|
|
}
|