mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
38ecb227b0
6 lines
142 B
Python
6 lines
142 B
Python
from flask import Blueprint
|
|||
|
|||
oauth_bp = Blueprint(
|
|||
name="oauth", import_name=__name__, url_prefix="/oauth", template_folder="templates"
|
|||
)
|