A vibe coded tangled fork which supports pijul.
at 3b2409e95a28df2eadf72b50497d1b2bde6d44ab 18 lines 287 B view raw
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}