aboutsummaryrefslogtreecommitdiffstats
path: root/bug/snapshot.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/snapshot.go')
-rw-r--r--bug/snapshot.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/bug/snapshot.go b/bug/snapshot.go
index 14ffd629..5058b3f7 100644
--- a/bug/snapshot.go
+++ b/bug/snapshot.go
@@ -10,10 +10,10 @@ import (
type Snapshot struct {
id string
- Status Status
- Title string
- Comments []Comment
- Labels []Label
+ Status Status `json:"status"`
+ Title string `json:"title"`
+ Comments []Comment `json:"comments"`
+ Labels []Label `json:"labels"`
Operations []Operation
}