flask_template_codex/app/core/routes.py
2026-08-08 02:53:18 +02:00

14 lines
203 B
Python

from flask import jsonify, render_template
from . import bp
@bp.get("/")
def index():
return render_template("core/index.html")
@bp.get("/health")
def health():
return jsonify(status="ok")