Initial commit - LEGO Instructions Manager v1.5.0

This commit is contained in:
2025-12-09 17:20:41 +11:00
commit 63496b1ccd
68 changed files with 9131 additions and 0 deletions

6
app/routes/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
from app.routes.auth import auth_bp
from app.routes.main import main_bp
from app.routes.sets import sets_bp
from app.routes.instructions import instructions_bp
__all__ = ['auth_bp', 'main_bp', 'sets_bp', 'instructions_bp']