returned disbured_date

This commit is contained in:
Chinenye Nmoh
2025-06-03 11:16:26 +01:00
parent 4619f83d46
commit 2872f6c75c
3 changed files with 7 additions and 2 deletions
+2
View File
@@ -2,6 +2,7 @@ from flask import Blueprint, request, jsonify, current_app
import requests
from app.utils.auth import get_headers
from app.config import settings
from app.utils.logger import logger
auth_bp = Blueprint("auth", __name__)
@@ -10,6 +11,7 @@ BASE_URL = settings.BANK_CALL_BASE_URL
@auth_bp.route("/health", methods=["GET"])
def health():
logger.info("Health check endpoint called")
return jsonify({"status": "Up"})