Files
notifications-api/app/status/healthcheck.py

12 lines
218 B
Python
Raw Normal View History

from flask import jsonify
2016-01-14 16:13:27 +00:00
from flask import Blueprint
status = Blueprint('status', __name__)
@status.route('/_status', methods=['GET', 'POST'])
2016-01-14 16:13:27 +00:00
def show_status():
return jsonify(
status="ok",
), 200