mirror of
https://github.com/sstent/go-garth.git
synced 2026-02-06 22:41:38 +00:00
porting - part2 wk2 done
This commit is contained in:
20
garth/stats/hydration.go
Normal file
20
garth/stats/hydration.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package stats
|
||||
|
||||
import "time"
|
||||
|
||||
const BASE_HYDRATION_PATH = "/usersummary-service/stats/hydration"
|
||||
|
||||
type DailyHydration struct {
|
||||
CalendarDate time.Time `json:"calendar_date"`
|
||||
TotalWaterML *int `json:"total_water_ml"`
|
||||
BaseStats
|
||||
}
|
||||
|
||||
func NewDailyHydration() *DailyHydration {
|
||||
return &DailyHydration{
|
||||
BaseStats: BaseStats{
|
||||
Path: BASE_HYDRATION_PATH + "/daily/{start}/{end}",
|
||||
PageSize: 28,
|
||||
},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user