Remove the view packages

This commit is contained in:
Rebecca Law
2016-01-14 16:13:27 +00:00
parent 3aa73b59e8
commit 010408d98a
12 changed files with 22 additions and 42 deletions

11
app/status/healthcheck.py Normal file
View File

@@ -0,0 +1,11 @@
from flask import jsonify
from flask import Blueprint
status = Blueprint('status', __name__)
@status.route('/_status')
def show_status():
return jsonify(
status="ok",
), 200