/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/protocol/keybase1/scanproofs.go
57 строк
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/scanproofs.avdl package keybase1 import ( "context" "time" "github.com/keybase/go-framed-msgpack-rpc/rpc" ) type ScanProofsArg struct { SessionID int `codec:"sessionID" json:"sessionID"` Infile string `codec:"infile" json:"infile"` Indices string `codec:"indices" json:"indices"` Sigid string `codec:"sigid" json:"sigid"` Ratelimit int `codec:"ratelimit" json:"ratelimit"` Cachefile string `codec:"cachefile" json:"cachefile"` Ignorefile string `codec:"ignorefile" json:"ignorefile"` } type ScanProofsInterface interface { ScanProofs(context.Context, ScanProofsArg) error } func ScanProofsProtocol(i ScanProofsInterface) rpc.Protocol { return rpc.Protocol{ Name: "keybase.1.ScanProofs", Methods: map[string]rpc.ServeHandlerDescription{ "scanProofs": { MakeArg: func() any { var ret [1]ScanProofsArg return &ret }, Handler: func(ctx context.Context, args any) (ret any, err error) { typedArgs, ok := args.(*[1]ScanProofsArg) if !ok { err = rpc.NewTypeError((*[1]ScanProofsArg)(nil), args) return } err = i.ScanProofs(ctx, typedArgs[0]) return }, }, }, } } type ScanProofsClient struct { Cli rpc.GenericClient } func (c ScanProofsClient) ScanProofs(ctx context.Context, __arg ScanProofsArg) (err error) { err = c.Cli.Call(ctx, "keybase.1.ScanProofs.scanProofs", []any{__arg}, nil, 0*time.Millisecond) return }