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 20 lines 486 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.deleteSession 6 7import ( 8 "context" 9 10 "github.com/bluesky-social/indigo/xrpc" 11) 12 13// ServerDeleteSession calls the XRPC method "com.atproto.server.deleteSession". 14func ServerDeleteSession(ctx context.Context, c *xrpc.Client) error { 15 if err := c.Do(ctx, xrpc.Procedure, "", "com.atproto.server.deleteSession", nil, nil, nil); err != nil { 16 return err 17 } 18 19 return nil 20}