/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/protocol/stellar1/gregor.go
58 строк
1 KB
zoom-ua
regen proto (#29134)
10 апр 2026, 18:28
Не верифицирован
10 апр 2026, 18:28
2288b80
Код
Авторство
О чём код?
// 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/stellar1/gregor.avdl package stellar1 import ( "github.com/keybase/go-framed-msgpack-rpc/rpc" ) type PaymentStatusMsg struct { AccountID AccountID `codec:"accountID" json:"accountID"` KbTxID KeybaseTransactionID `codec:"kbTxID" json:"kbTxID"` TxID TransactionID `codec:"txID" json:"txID"` } func (o PaymentStatusMsg) DeepCopy() PaymentStatusMsg { return PaymentStatusMsg{ AccountID: o.AccountID.DeepCopy(), KbTxID: o.KbTxID.DeepCopy(), TxID: o.TxID.DeepCopy(), } } type RequestStatusMsg struct { ReqID KeybaseRequestID `codec:"reqID" json:"reqID"` } func (o RequestStatusMsg) DeepCopy() RequestStatusMsg { return RequestStatusMsg{ ReqID: o.ReqID.DeepCopy(), } } type PaymentNotificationMsg struct { AccountID AccountID `codec:"accountID" json:"accountID"` PaymentID PaymentID `codec:"paymentID" json:"paymentID"` } func (o PaymentNotificationMsg) DeepCopy() PaymentNotificationMsg { return PaymentNotificationMsg{ AccountID: o.AccountID.DeepCopy(), PaymentID: o.PaymentID.DeepCopy(), } } type GregorInterface interface { } func GregorProtocol(i GregorInterface) rpc.Protocol { return rpc.Protocol{ Name: "stellar.1.gregor", Methods: map[string]rpc.ServeHandlerDescription{}, } } type GregorClient struct { Cli rpc.GenericClient }