This is the initial push of the outline of the life dashboard

This commit is contained in:
YOUNG
2026-03-09 12:52:48 -05:00
parent bf1e4e754f
commit 7596a5f382
47 changed files with 6522 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
from app.models.weight import WeightEntry
from app.models.workout import Exercise, Workout, WorkoutSet
from app.models.finance import FinanceTransaction, FinanceSnapshot
__all__ = [
"WeightEntry",
"Exercise",
"Workout",
"WorkoutSet",
"FinanceTransaction",
"FinanceSnapshot",
]