2023-04-02 10:00:20 +03:00
|
|
|
<?php
|
2023-04-11 00:30:15 +03:00
|
|
|
if(/*debug*/true)
|
|
|
|
{
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
ini_set('display_startup_errors', 1);
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
}
|
2023-04-12 04:08:09 +03:00
|
|
|
include_once "Core/Core.php";
|
|
|
|
|
|
|
|
Route::public("/", __DIR__."/public/");
|
|
|
|
|
|
|
|
includeAllSubFiles("./Server");
|
|
|
|
|
|
|
|
Route::Execute();
|