mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-15 00:35:47 -07:00
13 lines
439 B
Python
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"]
|