TD-314: [BACK]. [реализовать сервис для подписания документов в контейнере signer]

This commit is contained in:
cherednik 2024-09-18 12:22:23 +04:00
parent 9f3381a6a8
commit caf6e82fc5
1 changed files with 7 additions and 2 deletions

View File

@ -4,10 +4,15 @@ declare(strict_types=1);
namespace App\Controller; namespace App\Controller;
use GuzzleHttp\Client;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response;
class SignController extends AbstractController class SignController extends AbstractController
{ {
#[Route(path: '/test', name: 'app.test')]
public function __invoke(): Response
{
return new Response('test123');
}
} }