Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
kardolus
GitHub Repository: kardolus/chatgpt-cli
Path: blob/main/history/history.go
2649 views
1
package history
2
3
import (
4
"github.com/kardolus/chatgpt-cli/api"
5
"time"
6
)
7
8
type History struct {
9
api.Message
10
Timestamp time.Time `json:"timestamp,omitempty"`
11
}
12
13