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