forked from keybase/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notify_app.go
44 lines (37 loc) · 996 Bytes
/
notify_app.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Auto-generated by avdl-compiler v1.3.25 (https://github.com/keybase/node-avdl-compiler)
// Input file: avdl/keybase1/notify_app.avdl
package keybase1
import (
"github.com/keybase/go-framed-msgpack-rpc/rpc"
context "golang.org/x/net/context"
)
type ExitArg struct {
}
type NotifyAppInterface interface {
Exit(context.Context) error
}
func NotifyAppProtocol(i NotifyAppInterface) rpc.Protocol {
return rpc.Protocol{
Name: "keybase.1.NotifyApp",
Methods: map[string]rpc.ServeHandlerDescription{
"exit": {
MakeArg: func() interface{} {
var ret [1]ExitArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
err = i.Exit(ctx)
return
},
MethodType: rpc.MethodNotify,
},
},
}
}
type NotifyAppClient struct {
Cli rpc.GenericClient
}
func (c NotifyAppClient) Exit(ctx context.Context) (err error) {
err = c.Cli.Notify(ctx, "keybase.1.NotifyApp.exit", []interface{}{ExitArg{}})
return
}