mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-16 12:45:48 -07:00
13 lines
421 B
Python
13 lines
421 B
Python
# ======================================================
|
|
# Data\Engine\integrations\__init__.py
|
|
# Description: Integration namespace exposing helper utilities for external service adapters.
|
|
#
|
|
# API Endpoints (if applicable): None
|
|
# ======================================================
|
|
|
|
"""Integration namespace for the Borealis Engine runtime."""
|
|
|
|
from .github import GitHubIntegration
|
|
|
|
__all__ = ["GitHubIntegration"]
|