12 lines
218 B
Python
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"}
|