github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/protocol/keybase1/notify_app.go (about) 1 // Auto-generated to Go types and interfaces using avdl-compiler v1.4.10 (https://github.com/keybase/node-avdl-compiler) 2 // Input file: avdl/keybase1/notify_app.avdl 3 4 package keybase1 5 6 import ( 7 "github.com/keybase/go-framed-msgpack-rpc/rpc" 8 context "golang.org/x/net/context" 9 "time" 10 ) 11 12 type ExitArg struct { 13 } 14 15 type NotifyAppInterface interface { 16 Exit(context.Context) error 17 } 18 19 func NotifyAppProtocol(i NotifyAppInterface) rpc.Protocol { 20 return rpc.Protocol{ 21 Name: "keybase.1.NotifyApp", 22 Methods: map[string]rpc.ServeHandlerDescription{ 23 "exit": { 24 MakeArg: func() interface{} { 25 var ret [1]ExitArg 26 return &ret 27 }, 28 Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) { 29 err = i.Exit(ctx) 30 return 31 }, 32 }, 33 }, 34 } 35 } 36 37 type NotifyAppClient struct { 38 Cli rpc.GenericClient 39 } 40 41 func (c NotifyAppClient) Exit(ctx context.Context) (err error) { 42 err = c.Cli.Notify(ctx, "keybase.1.NotifyApp.exit", []interface{}{ExitArg{}}, 0*time.Millisecond) 43 return 44 }