1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package bsky
4
5// schema: app.bsky.graph.muteActorList
6
7import (
8 "context"
9
10 "github.com/bluesky-social/indigo/xrpc"
11)
12
13// GraphMuteActorList_Input is the input argument to a app.bsky.graph.muteActorList call.
14type GraphMuteActorList_Input struct {
15 List string `json:"list" cborgen:"list"`
16}
17
18// GraphMuteActorList calls the XRPC method "app.bsky.graph.muteActorList".
19func GraphMuteActorList(ctx context.Context, c *xrpc.Client, input *GraphMuteActorList_Input) error {
20 if err := c.Do(ctx, xrpc.Procedure, "application/json", "app.bsky.graph.muteActorList", nil, input, nil); err != nil {
21 return err
22 }
23
24 return nil
25}