Files
notifications-api/app/main/views/healthcheck.py
Martyn Inglis 3f5e7ae0bd Added healthcheck page
- used in ELB healthchecks
2015-12-15 17:14:13 +00:00

8 lines
145 B
Python

from flask import jsonify
from .. import main
@main.route('/', methods=['GET'])
def get_index():
return jsonify(result="hello world"), 200