9 lines
219 B
Python
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())
|