10 lines
207 B
PHP
Executable File
10 lines
207 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
define('APP_ROOT', dirname(__DIR__));
|
|
|
|
require_once APP_ROOT . '/lib/config.php';
|
|
require_once APP_ROOT . '/lib/ha_client.php';
|
|
require_once APP_ROOT . '/lib/dashboard.php';
|
|
|