mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-26 22:01:59 -06:00
Refine Engine bootstrap logging
This commit is contained in:
18
Data/Engine/interfaces/http/__init__.py
Normal file
18
Data/Engine/interfaces/http/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""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"]
|
||||
Reference in New Issue
Block a user