type Cumulative struct {
ElapsedDays int `json:"elapsedDays"`
DaysRemaining int `json:"daysRemaining"`
Months int `json:"months"`
End time.Time `json:"end"`
Start time.Time `json:"start"`
}
type Streak struct {
ElapsedDays int `json:"elapsedDays"`
DaysRemaining int `json:"daysRemaining"`
Months int `json:"months"`
End time.Time `json:"end"`
Start time.Time `json:"start"`
}