mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-15 17:35:48 -07:00
13 lines
410 B
Python
13 lines
410 B
Python
# ======================================================
|
|
# Data\Engine\services\API\notifications\__init__.py
|
|
# Description: Package init for notification API endpoints.
|
|
#
|
|
# API Endpoints (if applicable): None
|
|
# ======================================================
|
|
|
|
"""Notification API package for the Borealis Engine."""
|
|
|
|
from .management import register_notifications
|
|
|
|
__all__ = ["register_notifications"]
|