mcServerWebsite/app/src/Controller/CalculatorController.php
Ploush 10976f6145
Some checks failed
Build & Deploy / Validation, build et push (push) Failing after 5m8s
Add Create mod calculator
2026-07-07 14:49:38 +02:00

18 lines
448 B
PHP

<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
#[Route('/calculator')]
final class CalculatorController extends AbstractController
{
#[Route('/', name: 'app_calculator')]
public function index(): Response
{
return $this->render('calculator/index.html.twig', [
]);
}
}