Move Api entities to Core

This commit is contained in:
Yassine Guedidi
2023-12-31 09:34:04 +01:00
parent 3fc0b5fa5b
commit 81577ef6b0
13 changed files with 23 additions and 23 deletions

View File

@ -8,10 +8,10 @@ use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Contracts\Translation\TranslatorInterface;
use Wallabag\ApiBundle\Entity\Client;
use Wallabag\ApiBundle\Form\Type\ClientType;
use Wallabag\ApiBundle\Repository\ClientRepository;
use Wallabag\CoreBundle\Controller\AbstractController;
use Wallabag\CoreBundle\Entity\Api\Client;
class DeveloperController extends AbstractController
{