dbms_primeidc/extdbms/total_counting.php
2025-03-26 19:23:54 +09:00

12 lines
204 B
PHP

<?php
namespace lib\Controllers;
require_once "lib/autoload.php";
try {
$control = new DashboardController();
return $control->mainPage();
} catch (\Exception $e) {
die($e->getMessage());
}