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