Files
sdb-back/app/routes/main.py

12 lines
218 B
Python

"""Main routes for the application."""
from flask import Blueprint
bp = Blueprint("main", __name__)
@bp.route("/health")
def health() -> dict[str, str]:
"""Health check endpoint."""
return {"status": "ok"}