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

8 lines
192 B
Python
Raw Normal View History

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