hongbo-miao/hongbomiao.com

View on GitHub
api-python/flaskr/blueprints/health_blueprint.py

Summary

Maintainability
A
0 mins
Test Coverage
from flask import Blueprint

health_blueprint = Blueprint("health_blueprint", __name__)


@health_blueprint.route("/")
def get_health() -> dict[str, str]:
    return {"api": "ok"}