Files
2026-08-05 14:46:10 +03:00

14 lines
313 B
Python

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