mirror of
https://github.com/simple-login/app.git
synced 2024-11-02 20:01:01 +01:00
3e2c120a73
- add twilio lib - create phone listing, reservation page - add twilio callback to receive messages
9 lines
155 B
Python
9 lines
155 B
Python
from flask import Blueprint
|
|
|
|
phone_bp = Blueprint(
|
|
name="phone",
|
|
import_name=__name__,
|
|
url_prefix="/phone",
|
|
template_folder="templates",
|
|
)
|