This commit is contained in:
2022-06-07 00:30:34 +03:00
commit 5f4b2cbf77
1784 changed files with 327645 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
set_include_path(APP_PATH);
spl_autoload_extensions('.php');
spl_autoload_register();
require PROJECT_PATH . DS . 'lib' . DS . 'Twig' . DS . 'Autoloader.php';
Twig_Autoloader::register();
Core\Database::connect();
Core\Route::begin();
?>