mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-15 00:35:47 -07:00
15 lines
534 B
Python
15 lines
534 B
Python
# ======================================================
|
|
# Data\Engine\services\auth\__init__.py
|
|
# Description: Exposes shared authentication helpers for Engine REST services.
|
|
#
|
|
# API Endpoints (if applicable): None
|
|
# ======================================================
|
|
|
|
"""Authentication utilities for Borealis Engine services."""
|
|
|
|
from .context import RequestAuthContext, PermissionResult
|
|
from .dev_mode import DevModeEntry, DevModeManager
|
|
|
|
__all__ = ["RequestAuthContext", "PermissionResult", "DevModeEntry", "DevModeManager"]
|
|
|