mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 08:21:13 -05:00
7 lines
209 B
Python
7 lines
209 B
Python
|
|
from flask import Blueprint
|
||
|
|
from app.v2.errors import register_errors
|
||
|
|
|
||
|
|
v2_inbound_sms_blueprint = Blueprint("v2_inbound_sms", __name__, url_prefix='/v2/inbound_sms')
|
||
|
|
|
||
|
|
register_errors(v2_inbound_sms_blueprint)
|