git-bug/bug/comment.go

11 lines
226 B
Go
Raw Normal View History

package bug
type Comment struct {
Author Person
Message string
2018-07-14 23:18:40 +03:00
// Creation time of the comment.
// Should be used only for human display, never for ordering as we can't rely on it in a distributed system.
Time int64
}