Calorie counting web application written in the Go language

account.go 137B

    package models import ( "time" ) type Account struct { Id int64 Profile string Created time.Time LastVisit time.Time }