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