This commit is contained in:
2025-05-28 11:59:35 +02:00
parent 42ea35bd47
commit d5b42a7550
2 changed files with 16 additions and 13 deletions

2
app.py
View File

@@ -2,7 +2,7 @@ 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
from flask import redirect, url_for, render_template
from flask import redirect, url_for
app.register_blueprint(api_blueprint, url_prefix="/api")
app.register_blueprint(auth_blueprint, url_prefix="/auth")