package models import ( "time" ) type Note struct { ID int `json:"id"` LastUpdate time.Time `json:"last_update"` Content string `json:"content"` }