MAJOR: Restructured backend Flask application moved all non-routes into utils, renamed routes to not prefix get, created middleware.py to replace utils.py within blueprints

This commit is contained in:
JustIceO7
2025-02-08 14:35:46 +00:00
parent ae623eee0d
commit e6b8ad9b9e
16 changed files with 631 additions and 550 deletions

View File

@@ -1,5 +1,5 @@
from flask import Blueprint
from blueprints.utils import admin_required
from blueprints.middleware import admin_required
admin_bp = Blueprint("admin", __name__)