snapshot.go

1package bug
2
3// Snapshot is a compiled form of the Bug data structure used for storage and merge
4type Snapshot struct {
5	Title    string
6	Comments []Comment
7	Labels   []Label
8}