Added customisation plugin to invenio instance

This commit is contained in:
2025-05-02 11:50:34 +01:00
parent cda4b978dd
commit 83131b2163
7 changed files with 49 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
from flask import Blueprint
def init_app(app):
"""Initialize application."""
app.register_blueprint(views.blueprint)
return app
from . import views