Scaffold Engine application interfaces

This commit is contained in:
2025-10-22 05:33:30 -06:00
parent fbaca54be8
commit 5ec5ee8f7a
17 changed files with 273 additions and 14 deletions

View File

@@ -0,0 +1,21 @@
"""Administrative HTTP interface placeholders for the Engine."""
from __future__ import annotations
from flask import Blueprint, Flask
blueprint = Blueprint("engine_admin", __name__, url_prefix="/api/admin")
def register(app: Flask) -> None:
"""Attach administrative routes to *app*.
Concrete endpoints will be migrated in subsequent phases.
"""
if "engine_admin" not in app.blueprints:
app.register_blueprint(blueprint)
__all__ = ["register", "blueprint"]