mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-27 21:41:57 -06:00
Scaffold Engine application interfaces
This commit is contained in:
21
Data/Engine/interfaces/http/tokens.py
Normal file
21
Data/Engine/interfaces/http/tokens.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""Token management HTTP interface placeholders for the Engine."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from flask import Blueprint, Flask
|
||||
|
||||
|
||||
blueprint = Blueprint("engine_tokens", __name__, url_prefix="/api/tokens")
|
||||
|
||||
|
||||
def register(app: Flask) -> None:
|
||||
"""Attach token management routes to *app*.
|
||||
|
||||
Implementation will be introduced as authentication services are migrated.
|
||||
"""
|
||||
|
||||
if "engine_tokens" not in app.blueprints:
|
||||
app.register_blueprint(blueprint)
|
||||
|
||||
|
||||
__all__ = ["register", "blueprint"]
|
||||
Reference in New Issue
Block a user