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

View File

@@ -1,5 +0,0 @@
from flask import Blueprint
status = Blueprint('status', __name__)
from app.status.views import healthcheck

View File

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