sbgg.jetzt/init.php
2024-07-24 16:56:25 +02:00

15 lines
234 B
PHP

<?php
declare(strict_types = 1);
namespace Kimendisch\Sbgg_Jetzt;
// LOAD ENV CONFIG //
require_once("./.env.php");
// PREPARE CLASSES FOR STATE STORAGE //
// nav
class Nav {
public static ?string $active = null;
}
?>