feat: initialize flask app skeleton
This commit is contained in:
@@ -0,0 +1 @@
|
||||
"""API blueprints."""
|
||||
@@ -0,0 +1,9 @@
|
||||
from flask import Blueprint, jsonify
|
||||
|
||||
|
||||
bp = Blueprint("health", __name__)
|
||||
|
||||
|
||||
@bp.get("/health")
|
||||
def health_check():
|
||||
return jsonify({"ok": True})
|
||||
Reference in New Issue
Block a user