feat(dashboard): #192 include treemap of treasure chests
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m47s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 3m36s

This commit was merged in pull request #195.
This commit is contained in:
2025-06-20 21:28:47 +02:00
parent 3120c19669
commit 72869e5c68
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
}