Sign in
pigweed
/
third_party
/
github
/
aspect-build
/
rules_js
/
HEAD
/
.
/
e2e
/
protobuf-google
/
greeter.proto
blob: 9c4e2d3b47b60a416e4068827c39fea2fe6a2588 [
file
]
syntax
=
"proto3"
;
package
greeter
;
service
Greeter
{
rpc
SayHello
(
HelloRequest
)
returns
(
HelloReply
)
{}
}
message
HelloRequest
{
string
name
=
1
;
}
message
HelloReply
{
string
message
=
1
;
}