this repo has no description
0
fork

Configure Feed

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

Generate lexicons

+5 -3
+5 -3
api/bsky/graphfollow.go
··· 5 5 package bsky 6 6 7 7 import ( 8 + comatproto "github.com/bluesky-social/indigo/api/atproto" 8 9 lexutil "github.com/bluesky-social/indigo/lex/util" 9 10 ) 10 11 ··· 13 14 } 14 15 15 16 type GraphFollow struct { 16 - LexiconTypeID string `json:"$type" cborgen:"$type,const=app.bsky.graph.follow"` 17 - CreatedAt string `json:"createdAt" cborgen:"createdAt"` 18 - Subject string `json:"subject" cborgen:"subject"` 17 + LexiconTypeID string `json:"$type" cborgen:"$type,const=app.bsky.graph.follow"` 18 + CreatedAt string `json:"createdAt" cborgen:"createdAt"` 19 + Subject string `json:"subject" cborgen:"subject"` 20 + Via *comatproto.RepoStrongRef `json:"via,omitempty" cborgen:"via,omitempty"` 19 21 }