This commit is contained in:
2025-05-17 19:52:17 +01:00
parent f6579aecb4
commit c46f984b0a
2 changed files with 129 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class GuiController extends AbstractController {
#[Route('/')]
public function index(): Response {
return $this->render('/index.html.twig');
}
}