bug.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}
9
10//func (bug Bug) Check() error {
11// if bug.Operations.Len() == 0 {
12// return "Empty operation log"
13// }
14//
15// if bug.Operations.Elems()
16//
17// return true
18//}