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
|
|
|
|
|
|
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)
|