Files
LesRecettesDePapis/public/index.php

13 lines
244 B
PHP
Raw Permalink Normal View History

2026-04-03 12:21:09 +02:00
<?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();