mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 13:41:56 +00:00
9 lines
189 B
Python
9 lines
189 B
Python
def init_app(app):
|
|
"""Initialize application."""
|
|
from . import views
|
|
|
|
app.register_blueprint(views.blueprint)
|
|
app.before_first_request(views.init_main_menu)
|
|
|
|
return app
|