<?php
namespace App\Controller\Content;
use App\Controller\BaseController;
use App\Service\SessionService;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Request;
class AgbsMarketplaceController extends BaseController
{
/**
* @Route("/agbsmarketplace", name="agbsmarketplace")
*/
public function agbsmarketplace(): Response
{
return $this->baseRender('content/agbsmarketplace.html.twig',);
}
}