this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/repo-parse-allocs 26 lines 814 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package atproto 4 5// schema: com.atproto.server.requestEmailUpdate 6 7import ( 8 "context" 9 10 "github.com/bluesky-social/indigo/xrpc" 11) 12 13// ServerRequestEmailUpdate_Output is the output of a com.atproto.server.requestEmailUpdate call. 14type ServerRequestEmailUpdate_Output struct { 15 TokenRequired bool `json:"tokenRequired" cborgen:"tokenRequired"` 16} 17 18// ServerRequestEmailUpdate calls the XRPC method "com.atproto.server.requestEmailUpdate". 19func ServerRequestEmailUpdate(ctx context.Context, c *xrpc.Client) (*ServerRequestEmailUpdate_Output, error) { 20 var out ServerRequestEmailUpdate_Output 21 if err := c.Do(ctx, xrpc.Procedure, "", "com.atproto.server.requestEmailUpdate", nil, nil, &out); err != nil { 22 return nil, err 23 } 24 25 return &out, nil 26}