Files
Borealis-Github-Replica/Data/Engine/services/__init__.py

13 lines
439 B
Python

# ======================================================
# Data\Engine\services\__init__.py
# Description: Aggregates API, WebSocket, and WebUI service registration helpers for the Engine runtime.
#
# API Endpoints (if applicable): None
# ======================================================
"""Service registration hooks for the Borealis Engine runtime."""
from . import API, WebSocket, WebUI
__all__ = ["API", "WebSocket", "WebUI"]