blob: e777ed4d846365ac0ab9f06e43fbc6232009c73a [file] [log] [blame]
package topicstore
// TopicJSON represents the structure of the topic data as it appears in the JSON files.
type TopicJSON struct {
TopicID int64 `json:"topic_id"`
Summary string `json:"summary"`
CodeContext string `json:"code_context"`
Commits []struct {
Hash string `json:"hash"`
Message string `json:"message"`
Date string `json:"date"`
Author string `json:"author"`
} `json:"commits"`
}