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