Files
notifications-api/app/v2/inbound_sms/__init__.py
T

7 lines
220 B
Python
Raw Normal View History

2017-11-03 16:35:22 +00:00
from flask import Blueprint
from app.v2.errors import register_errors
2017-11-06 18:22:18 +00:00
v2_inbound_sms_blueprint = Blueprint("v2_inbound_sms", __name__, url_prefix='/v2/received-text-messages')
2017-11-03 16:35:22 +00:00
register_errors(v2_inbound_sms_blueprint)