aboutsummaryrefslogtreecommitdiffstats
path: root/bug/comment.go
blob: 2261f6de530cf33589a103e72d1e876db86d5367 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package bug

import "time"

type Comment struct {
	Author  Person
	Message string

	// 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 time.Time
}