mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
11 lines
226 B
Go
11 lines
226 B
Go
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
|
|
}
|