mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-07 05:58:24 -04:00
Remove the view packages
This commit is contained in:
11
app/status/healthcheck.py
Normal file
11
app/status/healthcheck.py
Normal 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
|
||||
Reference in New Issue
Block a user