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

import "github.com/MichaelMure/git-bug/util"

type Comment struct {
	Author  Person
	Message string
	Media   []util.Hash
}