import pytest_asyncio from src.service.auth.jwt import HashService, JwtService @pytest_asyncio.fixture async def jwt_service()->JwtService: jwt_service=JwtService() return jwt_service @pytest_asyncio.fixture async def hash_service()->HashService: hash_service=HashService() return hash_service