mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-26 06:05:34 +00:00
19 lines
386 B
PHP
19 lines
386 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Controller;
|
||
|
|
|
||
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||
|
|
use Symfony\Component\HttpFoundation\Response;
|
||
|
|
use Symfony\Component\Routing\Attribute\Route;
|
||
|
|
|
||
|
|
class HomeController extends AbstractController
|
||
|
|
{
|
||
|
|
|
||
|
|
#[Route(path: "/", name: "index")]
|
||
|
|
public function index(): Response
|
||
|
|
{
|
||
|
|
return $this->render('base.html.twig');
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|