Calorie counting web application written in the Go language

account.go 137B

12345678910111213
  1. package models
  2. import (
  3. "time"
  4. )
  5. type Account struct {
  6. Id int64
  7. Profile string
  8. Created time.Time
  9. LastVisit time.Time
  10. }