mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
16 lines
221 B
Python
16 lines
221 B
Python
from flask import Blueprint
|
|
|
|
blueprint = Blueprint(
|
|
"custom_menu",
|
|
__name__,
|
|
)
|
|
|
|
|
|
def init_app(app):
|
|
"""Initialize application."""
|
|
app.register_blueprint(blueprint)
|
|
|
|
from . import views
|
|
|
|
return app
|