feat: add index route

This commit is contained in:
Aymeric GUERACAGUE 2025-05-19 14:14:46 +02:00
parent 0bb159deea
commit a62b5e333c
Signed by: Superkooka
GPG Key ID: F78F2B172E894865
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class HealthcheckController
{
#[Route('/', name: 'healthcheck')]
public function healthcheck(): Response
{
return new Response("ok");
}
}