hnschat-web/etc/config.php
2024-04-16 22:26:30 +00:00

6 lines
146 B
PHP

<?php
$json = json_decode(file_get_contents(__DIR__."/config.json"), true);
foreach ($json as $key => $value) {
$GLOBALS[$key] = $value;
}
?>