mirror of
https://github.com/manualdousuario/marreta.git
synced 2025-09-01 10:10:14 +00:00
13 lines
246 B
PHP
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();
|