A fork of https://github.com/teal-fm/piper
at main 20 lines 571 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package atproto 4 5// schema: com.atproto.identity.requestPlcOperationSignature 6 7import ( 8 "context" 9 10 "github.com/bluesky-social/indigo/xrpc" 11) 12 13// IdentityRequestPlcOperationSignature calls the XRPC method "com.atproto.identity.requestPlcOperationSignature". 14func IdentityRequestPlcOperationSignature(ctx context.Context, c *xrpc.Client) error { 15 if err := c.Do(ctx, xrpc.Procedure, "", "com.atproto.identity.requestPlcOperationSignature", nil, nil, nil); err != nil { 16 return err 17 } 18 19 return nil 20}