628 lines
20 KiB
Go
628 lines
20 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.25.0
|
|
// protoc v3.6.1
|
|
// source: rpc_node/rpc_node.proto
|
|
|
|
package rpc_node
|
|
|
|
import (
|
|
context "context"
|
|
proto "github.com/golang/protobuf/proto"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
// This is a compile-time assertion that a sufficiently up-to-date version
|
|
// of the legacy proto package is being used.
|
|
const _ = proto.ProtoPackageIsVersion4
|
|
|
|
type NodeRequest struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
|
|
Country string `protobuf:"bytes,3,opt,name=country,proto3" json:"country,omitempty"`
|
|
Address string `protobuf:"bytes,4,opt,name=address,proto3" json:"address,omitempty"`
|
|
}
|
|
|
|
func (x *NodeRequest) Reset() {
|
|
*x = NodeRequest{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *NodeRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*NodeRequest) ProtoMessage() {}
|
|
|
|
func (x *NodeRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[0]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use NodeRequest.ProtoReflect.Descriptor instead.
|
|
func (*NodeRequest) Descriptor() ([]byte, []int) {
|
|
return file_rpc_node_rpc_node_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *NodeRequest) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *NodeRequest) GetEmail() string {
|
|
if x != nil {
|
|
return x.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *NodeRequest) GetCountry() string {
|
|
if x != nil {
|
|
return x.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *NodeRequest) GetAddress() string {
|
|
if x != nil {
|
|
return x.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type NodeResponse struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
|
|
Address *NodeResponse_Address `protobuf:"bytes,4,opt,name=address,proto3" json:"address,omitempty"`
|
|
}
|
|
|
|
func (x *NodeResponse) Reset() {
|
|
*x = NodeResponse{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *NodeResponse) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*NodeResponse) ProtoMessage() {}
|
|
|
|
func (x *NodeResponse) ProtoReflect() protoreflect.Message {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[1]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use NodeResponse.ProtoReflect.Descriptor instead.
|
|
func (*NodeResponse) Descriptor() ([]byte, []int) {
|
|
return file_rpc_node_rpc_node_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *NodeResponse) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *NodeResponse) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *NodeResponse) GetEmail() string {
|
|
if x != nil {
|
|
return x.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *NodeResponse) GetAddress() *NodeResponse_Address {
|
|
if x != nil {
|
|
return x.Address
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type NodeResponse_Country struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
Code int32 `protobuf:"varint,3,opt,name=code,proto3" json:"code,omitempty"`
|
|
}
|
|
|
|
func (x *NodeResponse_Country) Reset() {
|
|
*x = NodeResponse_Country{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *NodeResponse_Country) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*NodeResponse_Country) ProtoMessage() {}
|
|
|
|
func (x *NodeResponse_Country) ProtoReflect() protoreflect.Message {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[2]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use NodeResponse_Country.ProtoReflect.Descriptor instead.
|
|
func (*NodeResponse_Country) Descriptor() ([]byte, []int) {
|
|
return file_rpc_node_rpc_node_proto_rawDescGZIP(), []int{1, 0}
|
|
}
|
|
|
|
func (x *NodeResponse_Country) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *NodeResponse_Country) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *NodeResponse_Country) GetCode() int32 {
|
|
if x != nil {
|
|
return x.Code
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type NodeResponse_City struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
PostalCode string `protobuf:"bytes,3,opt,name=postalCode,proto3" json:"postalCode,omitempty"`
|
|
}
|
|
|
|
func (x *NodeResponse_City) Reset() {
|
|
*x = NodeResponse_City{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *NodeResponse_City) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*NodeResponse_City) ProtoMessage() {}
|
|
|
|
func (x *NodeResponse_City) ProtoReflect() protoreflect.Message {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[3]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use NodeResponse_City.ProtoReflect.Descriptor instead.
|
|
func (*NodeResponse_City) Descriptor() ([]byte, []int) {
|
|
return file_rpc_node_rpc_node_proto_rawDescGZIP(), []int{1, 1}
|
|
}
|
|
|
|
func (x *NodeResponse_City) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *NodeResponse_City) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *NodeResponse_City) GetPostalCode() string {
|
|
if x != nil {
|
|
return x.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type NodeResponse_Address struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Country *NodeResponse_Country `protobuf:"bytes,1,opt,name=country,proto3" json:"country,omitempty"`
|
|
City *NodeResponse_City `protobuf:"bytes,2,opt,name=city,proto3" json:"city,omitempty"`
|
|
Street string `protobuf:"bytes,3,opt,name=street,proto3" json:"street,omitempty"`
|
|
Number int32 `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
|
|
Apartment int32 `protobuf:"varint,5,opt,name=apartment,proto3" json:"apartment,omitempty"`
|
|
}
|
|
|
|
func (x *NodeResponse_Address) Reset() {
|
|
*x = NodeResponse_Address{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *NodeResponse_Address) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*NodeResponse_Address) ProtoMessage() {}
|
|
|
|
func (x *NodeResponse_Address) ProtoReflect() protoreflect.Message {
|
|
mi := &file_rpc_node_rpc_node_proto_msgTypes[4]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use NodeResponse_Address.ProtoReflect.Descriptor instead.
|
|
func (*NodeResponse_Address) Descriptor() ([]byte, []int) {
|
|
return file_rpc_node_rpc_node_proto_rawDescGZIP(), []int{1, 2}
|
|
}
|
|
|
|
func (x *NodeResponse_Address) GetCountry() *NodeResponse_Country {
|
|
if x != nil {
|
|
return x.Country
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *NodeResponse_Address) GetCity() *NodeResponse_City {
|
|
if x != nil {
|
|
return x.City
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *NodeResponse_Address) GetStreet() string {
|
|
if x != nil {
|
|
return x.Street
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *NodeResponse_Address) GetNumber() int32 {
|
|
if x != nil {
|
|
return x.Number
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *NodeResponse_Address) GetApartment() int32 {
|
|
if x != nil {
|
|
return x.Apartment
|
|
}
|
|
return 0
|
|
}
|
|
|
|
var File_rpc_node_rpc_node_proto protoreflect.FileDescriptor
|
|
|
|
var file_rpc_node_rpc_node_proto_rawDesc = []byte{
|
|
0x0a, 0x17, 0x72, 0x70, 0x63, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x5f, 0x6e,
|
|
0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x72, 0x70, 0x63, 0x5f, 0x6e,
|
|
0x6f, 0x64, 0x65, 0x22, 0x6b, 0x0a, 0x0b, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18,
|
|
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x18, 0x0a, 0x07,
|
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,
|
|
0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
|
|
0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
|
|
0x22, 0xd6, 0x03, 0x0a, 0x0c, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69,
|
|
0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03,
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x38, 0x0a, 0x07, 0x61,
|
|
0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x72,
|
|
0x70, 0x63, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70,
|
|
0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x07, 0x61, 0x64,
|
|
0x64, 0x72, 0x65, 0x73, 0x73, 0x1a, 0x41, 0x0a, 0x07, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
|
|
0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64,
|
|
0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
|
0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01,
|
|
0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x1a, 0x4a, 0x0a, 0x04, 0x43, 0x69, 0x74, 0x79,
|
|
0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64,
|
|
0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
|
0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f,
|
|
0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c,
|
|
0x43, 0x6f, 0x64, 0x65, 0x1a, 0xc2, 0x01, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
|
|
0x12, 0x38, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
0x0b, 0x32, 0x1e, 0x2e, 0x72, 0x70, 0x63, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x2e, 0x4e, 0x6f, 0x64,
|
|
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72,
|
|
0x79, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x2f, 0x0a, 0x04, 0x63, 0x69,
|
|
0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x70, 0x63, 0x5f, 0x6e,
|
|
0x6f, 0x64, 0x65, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
0x2e, 0x43, 0x69, 0x74, 0x79, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x73,
|
|
0x74, 0x72, 0x65, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x72,
|
|
0x65, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20,
|
|
0x01, 0x28, 0x05, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x61,
|
|
0x70, 0x61, 0x72, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
|
|
0x61, 0x70, 0x61, 0x72, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x32, 0x47, 0x0a, 0x0b, 0x4e, 0x6f, 0x64,
|
|
0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x4e,
|
|
0x6f, 0x64, 0x65, 0x12, 0x15, 0x2e, 0x72, 0x70, 0x63, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x2e, 0x4e,
|
|
0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x72, 0x70, 0x63,
|
|
0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
0x73, 0x65, 0x42, 0x13, 0x5a, 0x11, 0x72, 0x70, 0x63, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x3b, 0x72,
|
|
0x70, 0x63, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
|
|
var (
|
|
file_rpc_node_rpc_node_proto_rawDescOnce sync.Once
|
|
file_rpc_node_rpc_node_proto_rawDescData = file_rpc_node_rpc_node_proto_rawDesc
|
|
)
|
|
|
|
func file_rpc_node_rpc_node_proto_rawDescGZIP() []byte {
|
|
file_rpc_node_rpc_node_proto_rawDescOnce.Do(func() {
|
|
file_rpc_node_rpc_node_proto_rawDescData = protoimpl.X.CompressGZIP(file_rpc_node_rpc_node_proto_rawDescData)
|
|
})
|
|
return file_rpc_node_rpc_node_proto_rawDescData
|
|
}
|
|
|
|
var file_rpc_node_rpc_node_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
|
|
var file_rpc_node_rpc_node_proto_goTypes = []interface{}{
|
|
(*NodeRequest)(nil), // 0: rpc_node.NodeRequest
|
|
(*NodeResponse)(nil), // 1: rpc_node.NodeResponse
|
|
(*NodeResponse_Country)(nil), // 2: rpc_node.NodeResponse.Country
|
|
(*NodeResponse_City)(nil), // 3: rpc_node.NodeResponse.City
|
|
(*NodeResponse_Address)(nil), // 4: rpc_node.NodeResponse.Address
|
|
}
|
|
var file_rpc_node_rpc_node_proto_depIdxs = []int32{
|
|
4, // 0: rpc_node.NodeResponse.address:type_name -> rpc_node.NodeResponse.Address
|
|
2, // 1: rpc_node.NodeResponse.Address.country:type_name -> rpc_node.NodeResponse.Country
|
|
3, // 2: rpc_node.NodeResponse.Address.city:type_name -> rpc_node.NodeResponse.City
|
|
0, // 3: rpc_node.NodeService.GetNode:input_type -> rpc_node.NodeRequest
|
|
1, // 4: rpc_node.NodeService.GetNode:output_type -> rpc_node.NodeResponse
|
|
4, // [4:5] is the sub-list for method output_type
|
|
3, // [3:4] is the sub-list for method input_type
|
|
3, // [3:3] is the sub-list for extension type_name
|
|
3, // [3:3] is the sub-list for extension extendee
|
|
0, // [0:3] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_rpc_node_rpc_node_proto_init() }
|
|
func file_rpc_node_rpc_node_proto_init() {
|
|
if File_rpc_node_rpc_node_proto != nil {
|
|
return
|
|
}
|
|
if !protoimpl.UnsafeEnabled {
|
|
file_rpc_node_rpc_node_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*NodeRequest); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_rpc_node_rpc_node_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*NodeResponse); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_rpc_node_rpc_node_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*NodeResponse_Country); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_rpc_node_rpc_node_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*NodeResponse_City); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_rpc_node_rpc_node_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*NodeResponse_Address); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: file_rpc_node_rpc_node_proto_rawDesc,
|
|
NumEnums: 0,
|
|
NumMessages: 5,
|
|
NumExtensions: 0,
|
|
NumServices: 1,
|
|
},
|
|
GoTypes: file_rpc_node_rpc_node_proto_goTypes,
|
|
DependencyIndexes: file_rpc_node_rpc_node_proto_depIdxs,
|
|
MessageInfos: file_rpc_node_rpc_node_proto_msgTypes,
|
|
}.Build()
|
|
File_rpc_node_rpc_node_proto = out.File
|
|
file_rpc_node_rpc_node_proto_rawDesc = nil
|
|
file_rpc_node_rpc_node_proto_goTypes = nil
|
|
file_rpc_node_rpc_node_proto_depIdxs = nil
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConnInterface
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion6
|
|
|
|
// NodeServiceClient is the client API for NodeService service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type NodeServiceClient interface {
|
|
GetNode(ctx context.Context, in *NodeRequest, opts ...grpc.CallOption) (*NodeResponse, error)
|
|
}
|
|
|
|
type nodeServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewNodeServiceClient(cc grpc.ClientConnInterface) NodeServiceClient {
|
|
return &nodeServiceClient{cc}
|
|
}
|
|
|
|
func (c *nodeServiceClient) GetNode(ctx context.Context, in *NodeRequest, opts ...grpc.CallOption) (*NodeResponse, error) {
|
|
out := new(NodeResponse)
|
|
err := c.cc.Invoke(ctx, "/rpc_node.NodeService/GetNode", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// NodeServiceServer is the server API for NodeService service.
|
|
type NodeServiceServer interface {
|
|
GetNode(context.Context, *NodeRequest) (*NodeResponse, error)
|
|
}
|
|
|
|
// UnimplementedNodeServiceServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedNodeServiceServer struct {
|
|
}
|
|
|
|
func (*UnimplementedNodeServiceServer) GetNode(context.Context, *NodeRequest) (*NodeResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetNode not implemented")
|
|
}
|
|
|
|
func RegisterNodeServiceServer(s *grpc.Server, srv NodeServiceServer) {
|
|
s.RegisterService(&_NodeService_serviceDesc, srv)
|
|
}
|
|
|
|
func _NodeService_GetNode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(NodeRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(NodeServiceServer).GetNode(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/rpc_node.NodeService/GetNode",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(NodeServiceServer).GetNode(ctx, req.(*NodeRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _NodeService_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "rpc_node.NodeService",
|
|
HandlerType: (*NodeServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "GetNode",
|
|
Handler: _NodeService_GetNode_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "rpc_node/rpc_node.proto",
|
|
}
|