diff options
author | Daniel Weipert <code@drogueronin.de> | 2022-01-27 22:57:25 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2022-01-27 22:57:25 +0100 |
commit | 88880f14dff2731838953b937692f87620750f69 (patch) | |
tree | ca4fc7f08986793523c196b3da824edc3c4c6ac7 /public | |
parent | 27a1680fe386db99fd983eba64533091b9451d27 (diff) |
Diffstat (limited to 'public')
-rw-r--r-- | public/index.php | 6 |
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(); |