mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 03:47:45 +08:00
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
// Code generated by protoc-gen-go.
|
|
// source: entry.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package namesys is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
entry.proto
|
|
|
|
It has these top-level messages:
|
|
IpnsEntry
|
|
*/
|
|
package namesys
|
|
|
|
import proto "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto"
|
|
import math "math"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = math.Inf
|
|
|
|
type IpnsEntry struct {
|
|
Value []byte `protobuf:"bytes,1,req,name=value" json:"value,omitempty"`
|
|
Signature []byte `protobuf:"bytes,2,req,name=signature" json:"signature,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *IpnsEntry) Reset() { *m = IpnsEntry{} }
|
|
func (m *IpnsEntry) String() string { return proto.CompactTextString(m) }
|
|
func (*IpnsEntry) ProtoMessage() {}
|
|
|
|
func (m *IpnsEntry) GetValue() []byte {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IpnsEntry) GetSignature() []byte {
|
|
if m != nil {
|
|
return m.Signature
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
}
|