mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
15 lines
247 B
Python
15 lines
247 B
Python
from flask import Blueprint
|
|
|
|
|
|
def init_app(app):
|
|
"""Initialize application."""
|
|
from . import views
|
|
|
|
app.register_blueprint(views.blueprint)
|
|
|
|
@app.before_first_request
|
|
def init_menus():
|
|
views.init_menu()
|
|
|
|
return app
|