package models import "time" type Washlist struct { Id int `json:"id"` Person string `json:"person"` Date time.Time `json:"date"` Washed string `json:"iswashed"` }