This commit is contained in:
hshub
2024-04-16 22:26:30 +00:00
commit fce566a8b9
94 changed files with 52437 additions and 0 deletions

6
etc/config.php Normal file
View File

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