mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-19 14:09:20 -04:00
11 lines
151 B
Python
11 lines
151 B
Python
from flask import jsonify
|
|
|
|
from app.status import status
|
|
|
|
|
|
@status.route('/_status')
|
|
def status():
|
|
return jsonify(
|
|
status="ok",
|
|
), 200
|