mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 16:31:15 -05:00
11 lines
226 B
Python
11 lines
226 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)
|