bug.go

1package bug
2
3type Bug struct {
4	Title    string
5	Comments []Comment
6}
7