this repo has no description
0
fork

Configure Feed

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

remove unused stringLink

-9
-9
cmd/relay/bgs/bgs.go
··· 21 21 comatproto "github.com/bluesky-social/indigo/api/atproto" 22 22 "github.com/bluesky-social/indigo/cmd/relay/events" 23 23 "github.com/bluesky-social/indigo/cmd/relay/models" 24 - lexutil "github.com/bluesky-social/indigo/lex/util" 25 24 "github.com/bluesky-social/indigo/xrpc" 26 25 27 26 "github.com/gorilla/websocket" ··· 711 710 } 712 711 713 712 return &u, nil 714 - } 715 - 716 - func stringLink(lnk *lexutil.LexLink) string { 717 - if lnk == nil { 718 - return "<nil>" 719 - } 720 - 721 - return lnk.String() 722 713 } 723 714 724 715 // handleFedEvent() is the callback passed to Slurper called from Slurper.handleConnection()