ajoutUtilisateurs

This commit is contained in:
Aco
2026-04-03 12:21:09 +02:00
parent b1f3806983
commit 7b886fef86
67 changed files with 1944 additions and 933 deletions

13
public/index.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
use App\Kernel;
if( !defined( 'APP_ROOT' ) )
/**
* Définit la racine de l'application en chemin absolue.
*/
define( 'APP_ROOT', realpath( __DIR__ . '/../') . '/' );
require_once '../src/Kernel.php';
Kernel::start();