123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: common.proto
- package common
- import (
- fmt "fmt"
- proto "github.com/golang/protobuf/proto"
- 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 User struct {
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *User) Reset() { *m = User{} }
- func (m *User) String() string { return proto.CompactTextString(m) }
- func (*User) ProtoMessage() {}
- func (*User) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{0}
- }
- func (m *User) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_User.Unmarshal(m, b)
- }
- func (m *User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_User.Marshal(b, m, deterministic)
- }
- func (m *User) XXX_Merge(src proto.Message) {
- xxx_messageInfo_User.Merge(m, src)
- }
- func (m *User) XXX_Size() int {
- return xxx_messageInfo_User.Size(m)
- }
- func (m *User) XXX_DiscardUnknown() {
- xxx_messageInfo_User.DiscardUnknown(m)
- }
- var xxx_messageInfo_User proto.InternalMessageInfo
- func (m *User) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func init() {
- proto.RegisterType((*User)(nil), "common.User")
- }
- func init() { proto.RegisterFile("common.proto", fileDescriptor_555bd8c177793206) }
- var fileDescriptor_555bd8c177793206 = []byte{
- // 72 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x49, 0xce, 0xcf, 0xcd,
- 0xcd, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0xf0, 0x94, 0xa4, 0xb8, 0x58,
- 0x42, 0x8b, 0x53, 0x8b, 0x84, 0x84, 0xb8, 0x58, 0xf2, 0x12, 0x73, 0x53, 0x25, 0x18, 0x15, 0x18,
- 0x35, 0x38, 0x83, 0xc0, 0xec, 0x24, 0x36, 0xb0, 0x52, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0x2c, 0x6d, 0x58, 0x59, 0x3a, 0x00, 0x00, 0x00,
- }
|