mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-02 17:48:36 -04:00
9 lines
169 B
Python
9 lines
169 B
Python
|
|
from flask import jsonify
|
||
|
|
|
||
|
|
from app.v2.govuk_alerts import v2_govuk_alerts_blueprint
|
||
|
|
|
||
|
|
|
||
|
|
@v2_govuk_alerts_blueprint.route('')
|
||
|
|
def get_broadcasts():
|
||
|
|
return jsonify({})
|