Calorie counting web application written in the Go language

history.go 198B

1234567891011121314
  1. package models
  2. import (
  3. "time"
  4. )
  5. type History struct {
  6. Id int64
  7. AccountId int64
  8. Product string
  9. Calories int64
  10. Date time.Time
  11. }