forked from
tangled.org/core
Monorepo for Tangled — https://tangled.org
1package models
2
3type RefKind int
4
5const (
6 RefKindIssue RefKind = iota
7 RefKindPull
8)
9
10// /@alice.com/cool-proj/issues/123
11// /@alice.com/cool-proj/issues/123#comment-321
12type ReferenceLink struct {
13 Handle string
14 Repo string
15 Kind RefKind
16 SubjectId int
17 CommentId *int
18}