comment.go

1package bug
2
3type Comment struct {
4	Author  Person
5	Message string
6}