mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 07:21:13 -05:00
Remove the view packages
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
from flask import Blueprint
|
||||
|
||||
status = Blueprint('status', __name__)
|
||||
|
||||
from app.status.views import healthcheck
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user