13 lines
210 B
Python
13 lines
210 B
Python
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from flask import jsonify
|
|
|
|
|
|
def register(app) -> None:
|
|
@app.route("/api/healthz")
|
|
def healthz() -> Any:
|
|
return jsonify({"ok": True})
|
|
|