package models import "time" type Washlist struct { Person string `json:"person"` Date time.Time `json:"date"` IsWashed bool `json:"iswashed"` }