8 lines
192 B
Python
8 lines
192 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from v1.auth.service import AuthService, SupabaseAuthGateway
|
||
|
|
|
||
|
|
|
||
|
|
def get_auth_service() -> AuthService:
|
||
|
|
return AuthService(gateway=SupabaseAuthGateway())
|