Preparing repo for merge of frontend with backend

This commit is contained in:
2025-04-25 18:11:27 +02:00
parent 2611ab39fb
commit 4c2b4bf5d0
8 changed files with 14 additions and 3 deletions

6
app.py
View File

@@ -1,7 +1,11 @@
from application import app
from application.api.views import api_blueprint
from application.auth.views import auth_blueprint
from application.dashboard.views import dash_blueprint
app.register_blueprint(api_blueprint)
app.register_blueprint(api_blueprint, url_prefix="/api")
app.register_blueprint(auth_blueprint, url_prefix="/auth")
app.register_blueprint(dash_blueprint, url_prefix="/dash")
# Default app route