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

10 lines
227 B
Python
Raw Normal View History

2017-11-03 16:35:22 +00:00
from flask import Blueprint
2021-03-10 13:55:06 +00:00
2017-11-03 16:35:22 +00:00
from app.v2.errors import register_errors
2023-08-29 14:54:30 -07: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)