feat: add a gRPC endpoint
This commit is contained in:
274
grpc/grpc.pb.go
Normal file
274
grpc/grpc.pb.go
Normal file
@ -0,0 +1,274 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.36.6
|
||||
// protoc v3.21.12
|
||||
// source: grpc.proto
|
||||
|
||||
package grpc
|
||||
|
||||
import (
|
||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
reflect "reflect"
|
||||
sync "sync"
|
||||
unsafe "unsafe"
|
||||
)
|
||||
|
||||
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)
|
||||
)
|
||||
|
||||
type WhoamiRequest struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *WhoamiRequest) Reset() {
|
||||
*x = WhoamiRequest{}
|
||||
mi := &file_grpc_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *WhoamiRequest) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*WhoamiRequest) ProtoMessage() {}
|
||||
|
||||
func (x *WhoamiRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_grpc_proto_msgTypes[0]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use WhoamiRequest.ProtoReflect.Descriptor instead.
|
||||
func (*WhoamiRequest) Descriptor() ([]byte, []int) {
|
||||
return file_grpc_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
type WhoamiReply struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
Hostname string `protobuf:"bytes,2,opt,name=hostname,proto3" json:"hostname,omitempty"`
|
||||
Iface []string `protobuf:"bytes,3,rep,name=iface,proto3" json:"iface,omitempty"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) Reset() {
|
||||
*x = WhoamiReply{}
|
||||
mi := &file_grpc_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*WhoamiReply) ProtoMessage() {}
|
||||
|
||||
func (x *WhoamiReply) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_grpc_proto_msgTypes[1]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use WhoamiReply.ProtoReflect.Descriptor instead.
|
||||
func (*WhoamiReply) Descriptor() ([]byte, []int) {
|
||||
return file_grpc_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) GetName() string {
|
||||
if x != nil {
|
||||
return x.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) GetHostname() string {
|
||||
if x != nil {
|
||||
return x.Hostname
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) GetIface() []string {
|
||||
if x != nil {
|
||||
return x.Iface
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// The empty request message
|
||||
type BenchRequest struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *BenchRequest) Reset() {
|
||||
*x = BenchRequest{}
|
||||
mi := &file_grpc_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *BenchRequest) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BenchRequest) ProtoMessage() {}
|
||||
|
||||
func (x *BenchRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_grpc_proto_msgTypes[2]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use BenchRequest.ProtoReflect.Descriptor instead.
|
||||
func (*BenchRequest) Descriptor() ([]byte, []int) {
|
||||
return file_grpc_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
// The response message containing simple data
|
||||
type BenchReply struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
Data int32 `protobuf:"varint,1,opt,name=data,proto3" json:"data,omitempty"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *BenchReply) Reset() {
|
||||
*x = BenchReply{}
|
||||
mi := &file_grpc_proto_msgTypes[3]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *BenchReply) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BenchReply) ProtoMessage() {}
|
||||
|
||||
func (x *BenchReply) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_grpc_proto_msgTypes[3]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use BenchReply.ProtoReflect.Descriptor instead.
|
||||
func (*BenchReply) Descriptor() ([]byte, []int) {
|
||||
return file_grpc_proto_rawDescGZIP(), []int{3}
|
||||
}
|
||||
|
||||
func (x *BenchReply) GetData() int32 {
|
||||
if x != nil {
|
||||
return x.Data
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
var File_grpc_proto protoreflect.FileDescriptor
|
||||
|
||||
const file_grpc_proto_rawDesc = "" +
|
||||
"\n" +
|
||||
"\n" +
|
||||
"grpc.proto\x12\x06whoami\"\x0f\n" +
|
||||
"\rWhoamiRequest\"S\n" +
|
||||
"\vWhoamiReply\x12\x12\n" +
|
||||
"\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n" +
|
||||
"\bhostname\x18\x02 \x01(\tR\bhostname\x12\x14\n" +
|
||||
"\x05iface\x18\x03 \x03(\tR\x05iface\"\x0e\n" +
|
||||
"\fBenchRequest\" \n" +
|
||||
"\n" +
|
||||
"BenchReply\x12\x12\n" +
|
||||
"\x04data\x18\x01 \x01(\x05R\x04data2u\n" +
|
||||
"\x06Whoami\x126\n" +
|
||||
"\x06Whoami\x12\x15.whoami.WhoamiRequest\x1a\x13.whoami.WhoamiReply\"\x00\x123\n" +
|
||||
"\x05Bench\x12\x14.whoami.BenchRequest\x1a\x12.whoami.BenchReply\"\x00B\bZ\x06./grpcb\x06proto3"
|
||||
|
||||
var (
|
||||
file_grpc_proto_rawDescOnce sync.Once
|
||||
file_grpc_proto_rawDescData []byte
|
||||
)
|
||||
|
||||
func file_grpc_proto_rawDescGZIP() []byte {
|
||||
file_grpc_proto_rawDescOnce.Do(func() {
|
||||
file_grpc_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_grpc_proto_rawDesc), len(file_grpc_proto_rawDesc)))
|
||||
})
|
||||
return file_grpc_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_grpc_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
||||
var file_grpc_proto_goTypes = []any{
|
||||
(*WhoamiRequest)(nil), // 0: whoami.WhoamiRequest
|
||||
(*WhoamiReply)(nil), // 1: whoami.WhoamiReply
|
||||
(*BenchRequest)(nil), // 2: whoami.BenchRequest
|
||||
(*BenchReply)(nil), // 3: whoami.BenchReply
|
||||
}
|
||||
var file_grpc_proto_depIdxs = []int32{
|
||||
0, // 0: whoami.Whoami.Whoami:input_type -> whoami.WhoamiRequest
|
||||
2, // 1: whoami.Whoami.Bench:input_type -> whoami.BenchRequest
|
||||
1, // 2: whoami.Whoami.Whoami:output_type -> whoami.WhoamiReply
|
||||
3, // 3: whoami.Whoami.Bench:output_type -> whoami.BenchReply
|
||||
2, // [2:4] is the sub-list for method output_type
|
||||
0, // [0:2] is the sub-list for method input_type
|
||||
0, // [0:0] is the sub-list for extension type_name
|
||||
0, // [0:0] is the sub-list for extension extendee
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_grpc_proto_init() }
|
||||
func file_grpc_proto_init() {
|
||||
if File_grpc_proto != nil {
|
||||
return
|
||||
}
|
||||
type x struct{}
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: unsafe.Slice(unsafe.StringData(file_grpc_proto_rawDesc), len(file_grpc_proto_rawDesc)),
|
||||
NumEnums: 0,
|
||||
NumMessages: 4,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
GoTypes: file_grpc_proto_goTypes,
|
||||
DependencyIndexes: file_grpc_proto_depIdxs,
|
||||
MessageInfos: file_grpc_proto_msgTypes,
|
||||
}.Build()
|
||||
File_grpc_proto = out.File
|
||||
file_grpc_proto_goTypes = nil
|
||||
file_grpc_proto_depIdxs = nil
|
||||
}
|
Reference in New Issue
Block a user