porting all github actions from bluesky-social/indigo to tangled CI
at main 721 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package bsky 4 5// schema: app.bsky.graph.unmuteActorList 6 7import ( 8 "context" 9 10 "github.com/bluesky-social/indigo/lex/util" 11) 12 13// GraphUnmuteActorList_Input is the input argument to a app.bsky.graph.unmuteActorList call. 14type GraphUnmuteActorList_Input struct { 15 List string `json:"list" cborgen:"list"` 16} 17 18// GraphUnmuteActorList calls the XRPC method "app.bsky.graph.unmuteActorList". 19func GraphUnmuteActorList(ctx context.Context, c util.LexClient, input *GraphUnmuteActorList_Input) error { 20 if err := c.LexDo(ctx, util.Procedure, "application/json", "app.bsky.graph.unmuteActorList", nil, input, nil); err != nil { 21 return err 22 } 23 24 return nil 25}