comment.go

 1package bug
 2
 3type Comment struct {
 4	Author  Person
 5	Message string
 6
 7	// Creation time of the comment.
 8	// Should be used only for human display, never for ordering as we can't rely on it in a distributed system.
 9	Time int64
10}