mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-16 00:45:48 -07:00
13 lines
368 B
Python
13 lines
368 B
Python
# ======================================================
|
|
# Data\Engine\services\API\enrollment\__init__.py
|
|
# Description: Engine enrollment API registration helpers.
|
|
#
|
|
# API Endpoints (if applicable): None
|
|
# ======================================================
|
|
|
|
"""Expose Engine-native enrollment API routes."""
|
|
|
|
from .routes import register
|
|
|
|
__all__ = ["register"]
|