11 lines
252 B
Go
11 lines
252 B
Go
package sdk
|
|
|
|
import "context"
|
|
|
|
type MuteList = GenericList[Follow]
|
|
|
|
func (sys *System) FetchMuteList(ctx context.Context, pubkey string) MuteList {
|
|
ml, _ := fetchGenericList(sys, ctx, pubkey, 10000, parseFollow, sys.MuteListCache, false)
|
|
return ml
|
|
}
|