diff options
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(); |