1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package chat
4
5// schema: chat.bsky.actor.deleteAccount
6
7import (
8 "context"
9
10 "github.com/bluesky-social/indigo/xrpc"
11)
12
13// ActorDeleteAccount_Output is the output of a chat.bsky.actor.deleteAccount call.
14type ActorDeleteAccount_Output struct {
15}
16
17// ActorDeleteAccount calls the XRPC method "chat.bsky.actor.deleteAccount".
18func ActorDeleteAccount(ctx context.Context, c *xrpc.Client) (*ActorDeleteAccount_Output, error) {
19 var out ActorDeleteAccount_Output
20 if err := c.Do(ctx, xrpc.Procedure, "", "chat.bsky.actor.deleteAccount", nil, nil, &out); err != nil {
21 return nil, err
22 }
23
24 return &out, nil
25}