feat(dashboard): #192 include treemap of treasure chests
Some checks failed
Build Docker Image / Build-Docker-Image (push) Has been cancelled

This commit is contained in:
2025-06-20 21:28:47 +02:00
parent 3120c19669
commit a201b818fc
6 changed files with 138 additions and 14 deletions

View File

@@ -22,3 +22,9 @@ type DashboardMainChartEntry struct {
Value int64
Savings int64
}
type DashboardTreasureChest struct {
Name string
Value int64
Children []DashboardTreasureChest
}