Monorepo for Tangled
tangled.org
1package models
2
3import "time"
4
5type RecentLinkType string
6
7const (
8 RecentLinkTypeRepo RecentLinkType = "repo"
9 RecentLinkTypeIssue RecentLinkType = "issue"
10 RecentLinkTypePull RecentLinkType = "pull"
11)
12
13type RecentLink struct {
14 Id int64
15 UserDid string
16 LinkType RecentLinkType
17 Target string // repo DID for repos; AT-URI string for issues/pulls
18 Visited time.Time
19}