Calorie counting web application written in the Go language

weight.go 128B

1234567891011
  1. package models
  2. import "time"
  3. type Weight struct {
  4. Id int64
  5. AccountId int64
  6. Weight float64
  7. Date time.Time
  8. }