mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-25 18:02:40 -05:00
12 lines
227 B
Python
12 lines
227 B
Python
from flask import Blueprint
|
|
|
|
from app.v2.errors import register_errors
|
|
|
|
v2_broadcast_blueprint = Blueprint(
|
|
"v2_broadcast_blueprint",
|
|
__name__,
|
|
url_prefix='/v2/broadcast',
|
|
)
|
|
|
|
register_errors(v2_broadcast_blueprint)
|