1package history 2 3import ( 4 "github.com/kardolus/chatgpt-cli/api" 5 "time" 6) 7 8type History struct { 9 api.Message 10 Timestamp time.Time `json:"timestamp,omitempty"` 11} 12 13