-
Notifications
You must be signed in to change notification settings - Fork 27
/
greet.pb.go
67 lines (55 loc) · 1.66 KB
/
greet.pb.go
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
// Code generated by protoc-gen-go-plugin. DO NOT EDIT.
// versions:
// protoc-gen-go-plugin v0.1.0
// protoc v3.21.12
// source: examples/helloworld/greeting/greet.proto
package greeting
import (
context "context"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
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)
)
// The request message containing the user's name.
type GreetRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
}
func (x *GreetRequest) ProtoReflect() protoreflect.Message {
panic(`not implemented`)
}
func (x *GreetRequest) GetName() string {
if x != nil {
return x.Name
}
return ""
}
// The response message containing the greetings
type GreetReply struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
}
func (x *GreetReply) ProtoReflect() protoreflect.Message {
panic(`not implemented`)
}
func (x *GreetReply) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
// The greeting service definition.
// go:plugin type=plugin version=1
type Greeter interface {
// Sends a greeting
Greet(context.Context, *GreetRequest) (*GreetReply, error)
}