Calorie counting web application written in the Go language
package modelsimport ( "time")type Account struct { Id int64 Profile string Created time.Time LastVisit time.Time}