14 lines
313 B
Python
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 |