8 lines
232 B
PHP
8 lines
232 B
PHP
<?php
|
|
require_once ( 'lib/php/classes/Database.php' );
|
|
function load_config ( ) : array {
|
|
$config = file_get_contents ( 'config.json' );
|
|
$config = json_decode ( $config, true );
|
|
return $config;
|
|
}
|