Monorepo for Tangled
at affc138f70d4ff01a7ede27c35b3022a0a8c811c 21 lines 280 B view raw
1package models 2 3import ( 4 "time" 5 6 "github.com/bluesky-social/indigo/atproto/syntax" 7) 8 9type Collaborator struct { 10 // identifiers for the record 11 Id int64 12 Did syntax.DID 13 Rkey string 14 15 // content 16 SubjectDid syntax.DID 17 RepoAt syntax.ATURI 18 19 // meta 20 Created time.Time 21}