7 lines
225 B
Python
7 lines
225 B
Python
|
|
"""Authentication and multi-tenant access control."""
|
||
|
|
|
||
|
|
from backend.auth.deps import get_current_user, require_admin
|
||
|
|
from backend.auth.models import UserContext
|
||
|
|
|
||
|
|
__all__ = ["UserContext", "get_current_user", "require_admin"]
|