2024-01-18 23:13:02 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Hura8\AppAdmin;
|
|
|
|
|
|
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
|
ini_set('display_startup_errors', 1);
|
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
|
|
2024-01-28 11:27:52 +07:00
|
|
|
const TEMPLATE_ASSET = '/assets';
|
2024-01-18 23:13:02 +07:00
|
|
|
|
|
|
|
|
include __DIR__."/_shared.php";
|
|
|
|
|
|
|
|
|
|
$objAppAdmin = new AppAdmin();
|
|
|
|
|
|
|
|
|
|
$objAppAdmin->start();
|