Monorepo for Tangled
at 5b600825a1d87703d7da8fb3614c7310c3b82213 17 lines 280 B view raw
1package models 2 3import ( 4 "time" 5 6 "github.com/bluesky-social/indigo/atproto/syntax" 7) 8 9type Star struct { 10 StarredByDid string 11 RepoAt syntax.ATURI 12 Created time.Time 13 Rkey string 14 15 // optionally, populate this when querying for reverse mappings 16 Repo *Repo 17}