Monorepo for Tangled tangled.org
2

Configure Feed

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

1package blobstore 2 3import ( 4 "context" 5 "io" 6 7 "github.com/bluesky-social/indigo/atproto/syntax" 8 "github.com/ipfs/go-cid" 9) 10 11type BlobStore interface { 12 GetBlob(ctx context.Context, did syntax.DID, cid cid.Cid) (io.ReadCloser, error) 13}