mirror of
https://github.com/Nathanwoodburn/hnschat-web.git
synced 2025-01-19 04:08:12 +11:00
6 lines
146 B
PHP
6 lines
146 B
PHP
|
<?php
|
||
|
$json = json_decode(file_get_contents(__DIR__."/config.json"), true);
|
||
|
foreach ($json as $key => $value) {
|
||
|
$GLOBALS[$key] = $value;
|
||
|
}
|
||
|
?>
|