Calorie counting web application written in the Go language

statistics.go 101B

12345678
  1. package models
  2. type ResponseStatistics struct {
  3. Goal int64
  4. Current int64
  5. Streak int64
  6. }