Files

16 lines
223 B
PHP
Raw Permalink Normal View History

2025-05-27 14:28:47 +07:00
<?php
use Hura\App;
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
const TEMPLATE_ASSET = '/assets';
include __DIR__."/_shared.php";
$objApp = new App();
$objApp->start();