/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/protocol/keybase1/session.go
89 строк
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/session.avdl package keybase1 import ( "context" "time" "github.com/keybase/go-framed-msgpack-rpc/rpc" ) type Session struct { Uid UID `codec:"uid" json:"uid"` Username string `codec:"username" json:"username"` Token string `codec:"token" json:"token"` DeviceSubkeyKid KID `codec:"deviceSubkeyKid" json:"deviceSubkeyKid"` DeviceSibkeyKid KID `codec:"deviceSibkeyKid" json:"deviceSibkeyKid"` } func (o Session) DeepCopy() Session { return Session{ Uid: o.Uid.DeepCopy(), Username: o.Username, Token: o.Token, DeviceSubkeyKid: o.DeviceSubkeyKid.DeepCopy(), DeviceSibkeyKid: o.DeviceSibkeyKid.DeepCopy(), } } type CurrentSessionArg struct { SessionID int `codec:"sessionID" json:"sessionID"` } type SessionPingArg struct { } type SessionInterface interface { CurrentSession(context.Context, int) (Session, error) SessionPing(context.Context) error } func SessionProtocol(i SessionInterface) rpc.Protocol { return rpc.Protocol{ Name: "keybase.1.session", Methods: map[string]rpc.ServeHandlerDescription{ "currentSession": { MakeArg: func() any { var ret [1]CurrentSessionArg return &ret }, Handler: func(ctx context.Context, args any) (ret any, err error) { typedArgs, ok := args.(*[1]CurrentSessionArg) if !ok { err = rpc.NewTypeError((*[1]CurrentSessionArg)(nil), args) return } ret, err = i.CurrentSession(ctx, typedArgs[0].SessionID) return }, }, "sessionPing": { MakeArg: func() any { var ret [1]SessionPingArg return &ret }, Handler: func(ctx context.Context, args any) (ret any, err error) { err = i.SessionPing(ctx) return }, }, }, } } type SessionClient struct { Cli rpc.GenericClient } func (c SessionClient) CurrentSession(ctx context.Context, sessionID int) (res Session, err error) { __arg := CurrentSessionArg{SessionID: sessionID} err = c.Cli.Call(ctx, "keybase.1.session.currentSession", []any{__arg}, &res, 0*time.Millisecond) return } func (c SessionClient) SessionPing(ctx context.Context) (err error) { err = c.Cli.Call(ctx, "keybase.1.session.sessionPing", []any{SessionPingArg{}}, nil, 0*time.Millisecond) return }