Initial Commit

This commit is contained in:
khaccount
2026-05-18 14:46:25 +02:00
parent 4f495177e4
commit b6d2142214
166 changed files with 13952 additions and 178 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace Evomedien\Vitec\Controller;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
class SimplecardController extends ActionController
{
public function listAction(): \Psr\Http\Message\ResponseInterface
{
return $this->htmlResponse();
}
}