package models import ( "time" ) type Ticket struct { ID string `json:"id"` // TODO: Add Ticket fields CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }