mirror of
https://github.com/simple-login/app.git
synced 2024-11-02 20:01:01 +01:00
9 lines
167 B
Python
9 lines
167 B
Python
from flask import Blueprint
|
|
|
|
developer_bp = Blueprint(
|
|
name="developer",
|
|
import_name=__name__,
|
|
url_prefix="/developer",
|
|
template_folder="templates",
|
|
)
|