mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 01:25:55 +02:00
26 lines
533 B
PHP
26 lines
533 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace App\Controller;
|
||
|
|
||
|
|
||
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||
|
use Symfony\Component\HttpFoundation\Response;
|
||
|
use Symfony\Component\Routing\Annotation\Route;
|
||
|
|
||
|
/**
|
||
|
* @Route("/tools")
|
||
|
* @package App\Controller
|
||
|
*/
|
||
|
class ToolsController extends AbstractController
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @Route("/reel_calc", name="tools_reel_calculator")
|
||
|
* @return Response
|
||
|
*/
|
||
|
public function reelCalculator() : Response
|
||
|
{
|
||
|
return $this->render("Tools/ReelCalculator/main.html.twig");
|
||
|
}
|
||
|
}
|