mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
58990ec762
* Hide proton integration behind cookie * Make cookie name configurable via config
9 lines
164 B
Python
9 lines
164 B
Python
from flask import Blueprint
|
|
|
|
internal_bp = Blueprint(
|
|
name="internal",
|
|
import_name=__name__,
|
|
url_prefix="/internal",
|
|
template_folder="templates",
|
|
)
|