Monorepo for Tangled tangled.org
5

Configure Feed

Select the types of activity you want to include in your feed.

1package models 2 3import ( 4 "time" 5 6 "github.com/bluesky-social/indigo/atproto/syntax" 7) 8 9type KnotMember struct { 10 Id int64 11 Did syntax.DID 12 Rkey string 13 Domain string 14 Subject syntax.DID 15 Created time.Time 16}