Calorie counting web application written in the Go language

trends.go 154B

123456789
  1. package models
  2. type ResponseTrends struct {
  3. Labels []int
  4. Goals map[string]int64
  5. Weights map[string]float64
  6. History map[string]int64
  7. }