mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-10 01:56:03 -04:00
12 lines
239 B
Python
12 lines
239 B
Python
|
|
from flask import Blueprint
|
||
|
|
|
||
|
|
from app.v2.errors import register_errors
|
||
|
|
|
||
|
|
v2_govuk_alerts_blueprint = Blueprint(
|
||
|
|
"v2_govuk-alerts_blueprint",
|
||
|
|
__name__,
|
||
|
|
url_prefix='/v2/govuk-alerts',
|
||
|
|
)
|
||
|
|
|
||
|
|
register_errors(v2_govuk_alerts_blueprint)
|