Files
social-app/backend/src/v1/auth/dependencies.py
T

9 lines
219 B
Python

from __future__ import annotations
from v1.auth.gateway import SupabaseAuthGateway
from v1.auth.service import AuthService
def get_auth_service() -> AuthService:
return AuthService(gateway=SupabaseAuthGateway())