aboutsummaryrefslogblamecommitdiffstats
path: root/bug/comment.go
blob: 09cd49bd10cdc7153da7823656e873e825e9672d (plain) (tree)
1
2
3
4
5
6
7
8
9




                      


                                                                                                                    
                  
 
package bug

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 int64
}