mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-04 05:30:53 -04:00
12 lines
218 B
Python
12 lines
218 B
Python
from flask import jsonify
|
|
|
|
from flask import Blueprint
|
|
status = Blueprint('status', __name__)
|
|
|
|
|
|
@status.route('/_status', methods=['GET', 'POST'])
|
|
def show_status():
|
|
return jsonify(
|
|
status="ok",
|
|
), 200
|