mirror of
https://github.com/simple-login/app.git
synced 2024-11-17 09:28:29 +01:00
9 lines
161 B
Python
9 lines
161 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
partner_bp = Blueprint(
|
||
|
name="partner",
|
||
|
import_name=__name__,
|
||
|
url_prefix="/partner",
|
||
|
template_folder="templates",
|
||
|
)
|