mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-27 14:01:57 -06:00
19 lines
418 B
Python
19 lines
418 B
Python
"""HTTP interface registration for the Borealis Engine."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from flask import Flask
|
|
|
|
|
|
def register_http_interfaces(app: Flask) -> None:
|
|
"""Attach HTTP blueprints to *app*.
|
|
|
|
The implementation is intentionally minimal for the initial scaffolding.
|
|
"""
|
|
|
|
# Future phases will import and register blueprints here.
|
|
return None
|
|
|
|
|
|
__all__ = ["register_http_interfaces"]
|