<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class PlatformController extends AbstractController
{
/**
* @Route("/platform", name="platform", methods={"GET"})
*/
public function index(): Response
{
return $this->render('platform/index.html.twig');
}
}