/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/protocol/keybase1/notify_fs_request.go
78 строк
2 KB
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
// Code generated to Go types and interfaces using avdl-compiler v1.4.10 (https://github.com/keybase/node-avdl-compiler). DO NOT EDIT. // Input file: avdl/keybase1/notify_fs_request.avdl package keybase1 import ( "context" "time" "github.com/keybase/go-framed-msgpack-rpc/rpc" ) type FSEditListRequestArg struct { Req FSEditListRequest `codec:"req" json:"req"` } type FSSyncStatusRequestArg struct { Req FSSyncStatusRequest `codec:"req" json:"req"` } type NotifyFSRequestInterface interface { FSEditListRequest(context.Context, FSEditListRequest) error FSSyncStatusRequest(context.Context, FSSyncStatusRequest) error } func NotifyFSRequestProtocol(i NotifyFSRequestInterface) rpc.Protocol { return rpc.Protocol{ Name: "keybase.1.NotifyFSRequest", Methods: map[string]rpc.ServeHandlerDescription{ "FSEditListRequest": { MakeArg: func() any { var ret [1]FSEditListRequestArg return &ret }, Handler: func(ctx context.Context, args any) (ret any, err error) { typedArgs, ok := args.(*[1]FSEditListRequestArg) if !ok { err = rpc.NewTypeError((*[1]FSEditListRequestArg)(nil), args) return } err = i.FSEditListRequest(ctx, typedArgs[0].Req) return }, }, "FSSyncStatusRequest": { MakeArg: func() any { var ret [1]FSSyncStatusRequestArg return &ret }, Handler: func(ctx context.Context, args any) (ret any, err error) { typedArgs, ok := args.(*[1]FSSyncStatusRequestArg) if !ok { err = rpc.NewTypeError((*[1]FSSyncStatusRequestArg)(nil), args) return } err = i.FSSyncStatusRequest(ctx, typedArgs[0].Req) return }, }, }, } } type NotifyFSRequestClient struct { Cli rpc.GenericClient } func (c NotifyFSRequestClient) FSEditListRequest(ctx context.Context, req FSEditListRequest) (err error) { __arg := FSEditListRequestArg{Req: req} err = c.Cli.Notify(ctx, "keybase.1.NotifyFSRequest.FSEditListRequest", []any{__arg}, 0*time.Millisecond) return } func (c NotifyFSRequestClient) FSSyncStatusRequest(ctx context.Context, req FSSyncStatusRequest) (err error) { __arg := FSSyncStatusRequestArg{Req: req} err = c.Cli.Notify(ctx, "keybase.1.NotifyFSRequest.FSSyncStatusRequest", []any{__arg}, 0*time.Millisecond) return }