Initial commit: Location Management Flask app

This commit is contained in:
ske087
2026-02-26 19:24:17 +02:00
commit 7a22575dab
52 changed files with 3481 additions and 0 deletions

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

@@ -0,0 +1,6 @@
"""Models package."""
from .user import User
from .board import Board
from .workflow import Workflow
__all__ = ["User", "Board", "Workflow"]