1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: github.com/containerd/protobuild/examples/nogrpc/nogrpc.proto
package nogrpc
import (
fmt "fmt"
proto "github.com/golang/protobuf/proto"
timestamp "github.com/golang/protobuf/ptypes/timestamp"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type Thing struct {
Timestamp *timestamp.Timestamp `protobuf:"bytes,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Thing) Reset() { *m = Thing{} }
func (m *Thing) String() string { return proto.CompactTextString(m) }
func (*Thing) ProtoMessage() {}
func (*Thing) Descriptor() ([]byte, []int) {
return fileDescriptor_cb990b4b37c93d36, []int{0}
}
func (m *Thing) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Thing.Unmarshal(m, b)
}
func (m *Thing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Thing.Marshal(b, m, deterministic)
}
func (m *Thing) XXX_Merge(src proto.Message) {
xxx_messageInfo_Thing.Merge(m, src)
}
func (m *Thing) XXX_Size() int {
return xxx_messageInfo_Thing.Size(m)
}
func (m *Thing) XXX_DiscardUnknown() {
xxx_messageInfo_Thing.DiscardUnknown(m)
}
var xxx_messageInfo_Thing proto.InternalMessageInfo
func (m *Thing) GetTimestamp() *timestamp.Timestamp {
if m != nil {
return m.Timestamp
}
return nil
}
func init() {
proto.RegisterType((*Thing)(nil), "protobuild.example.nogrpc.Thing")
}
func init() {
proto.RegisterFile("github.com/containerd/protobuild/examples/nogrpc/nogrpc.proto", fileDescriptor_cb990b4b37c93d36)
}
var fileDescriptor_cb990b4b37c93d36 = []byte{
// 162 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xb2, 0x4d, 0xcf, 0x2c, 0xc9,
0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xce, 0xcf, 0x2b, 0x49, 0xcc, 0xcc, 0x4b, 0x2d,
0x4a, 0xd1, 0x2f, 0x28, 0xca, 0x2f, 0xc9, 0x4f, 0x2a, 0xcd, 0xcc, 0x49, 0xd1, 0x4f, 0xad, 0x48,
0xcc, 0x2d, 0xc8, 0x49, 0x2d, 0xd6, 0xcf, 0xcb, 0x4f, 0x2f, 0x2a, 0x48, 0x86, 0x52, 0x7a, 0x60,
0x15, 0x42, 0x92, 0x08, 0x85, 0x7a, 0x50, 0x85, 0x7a, 0x10, 0x05, 0x52, 0xf2, 0xe9, 0xf9, 0xf9,
0xe9, 0x39, 0xa9, 0x30, 0xa3, 0xd2, 0xf4, 0x4b, 0x32, 0x73, 0x53, 0x8b, 0x4b, 0x12, 0x73, 0x0b,
0x20, 0x7a, 0x95, 0x1c, 0xb9, 0x58, 0x43, 0x32, 0x32, 0xf3, 0xd2, 0x85, 0x2c, 0xb8, 0x38, 0xe1,
0x72, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x52, 0x7a, 0x10, 0xdd, 0x7a, 0x30, 0xdd, 0x7a,
0x21, 0x30, 0x15, 0x41, 0x08, 0xc5, 0x4e, 0x56, 0x51, 0x16, 0x24, 0xbb, 0xdf, 0x1a, 0x42, 0x27,
0xb1, 0x81, 0xd5, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xfa, 0x5e, 0xce, 0x08, 0x02, 0x01,
0x00, 0x00,
}
|