// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. package ozone // schema: tools.ozone.set.deleteSet import ( "context" "github.com/bluesky-social/indigo/lex/util" ) // SetDeleteSet_Input is the input argument to a tools.ozone.set.deleteSet call. type SetDeleteSet_Input struct { // name: Name of the set to delete Name string `json:"name" cborgen:"name"` } // SetDeleteSet_Output is the output of a tools.ozone.set.deleteSet call. type SetDeleteSet_Output struct { } // SetDeleteSet calls the XRPC method "tools.ozone.set.deleteSet". func SetDeleteSet(ctx context.Context, c util.LexClient, input *SetDeleteSet_Input) (*SetDeleteSet_Output, error) { var out SetDeleteSet_Output if err := c.LexDo(ctx, util.Procedure, "application/json", "tools.ozone.set.deleteSet", nil, input, &out); err != nil { return nil, err } return &out, nil }