mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
git-subtree-dir: repo git-subtree-mainline:433f95e0f4git-subtree-split:d5df1fb87c
18 lines
314 B
Python
18 lines
314 B
Python
"""Additional views."""
|
|
|
|
from flask import Blueprint
|
|
|
|
#
|
|
# Registration
|
|
#
|
|
def create_blueprint(app):
|
|
"""Register blueprint routes on app."""
|
|
blueprint = Blueprint(
|
|
"am_d_model_data_repository",
|
|
__name__,
|
|
template_folder="./templates",
|
|
)
|
|
|
|
# Add URL rules
|
|
return blueprint
|