main/app/index.php
2025-01-29 20:46:05 -03:00

13 lines
246 B
PHP

<?php
/**
* Application entry point
*
* Initializes the routing system and dispatches requests
* to appropriate handlers using FastRoute.
*/
require_once __DIR__ . '/vendor/autoload.php';
$router = new App\Router();
$router->dispatch();