summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2022-01-27 22:57:25 +0100
committerDaniel Weipert <code@drogueronin.de>2022-01-27 22:57:25 +0100
commit88880f14dff2731838953b937692f87620750f69 (patch)
treeca4fc7f08986793523c196b3da824edc3c4c6ac7 /public
parent27a1680fe386db99fd983eba64533091b9451d27 (diff)
Add Kernel with configHEADmain
Diffstat (limited to 'public')
-rw-r--r--public/index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/index.php b/public/index.php
index 022af48..85aad22 100644
--- a/public/index.php
+++ b/public/index.php
@@ -1,8 +1,8 @@
<?php
+use Elements\Kernel;
+
require_once dirname(__DIR__) . '/vendor/autoload.php';
-\Elements\Template::init();
-\Elements\DB::init();
-new \Elements\Router();
+Kernel::init();