terrarium-web/src/Controller/MonitoringController.php

21 lines
485 B
PHP

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