This commit is contained in:
pika 2025-03-22 12:30:45 +01:00
commit acb3c7642a
23 changed files with 3940 additions and 0 deletions

8
app/routes/__init__.py Normal file
View file

@ -0,0 +1,8 @@
from flask import Blueprint
auth_bp = Blueprint('auth', __name__, url_prefix='/auth')
files_bp = Blueprint('files', __name__, url_prefix='/files')
dashboard_bp = Blueprint('dashboard', __name__, url_prefix='')
# Import the route handlers AFTER creating the blueprints
from app.routes import auth, files, dashboard