Monorepo for Tangled
at master 27 lines 409 B view raw
1package models 2 3import ( 4 "time" 5 6 "github.com/bluesky-social/indigo/atproto/syntax" 7) 8 9type Star struct { 10 Did string 11 RepoAt syntax.ATURI 12 SubjectDid string 13 Created time.Time 14 Rkey string 15} 16 17// RepoStar is used for reverse mapping to repos 18type RepoStar struct { 19 Star 20 Repo *Repo 21} 22 23// StringStar is used for reverse mapping to strings 24type StringStar struct { 25 Star 26 String *String 27}