Sign in
appsheet-third-party
/
protobuf.js
/
HEAD
/
.
/
tests
/
data
/
rpc.proto
blob: a9841c06bf278e800c9c2290c76e9708ba048ec4 [
file
] [
log
] [
blame
]
syntax
=
"proto3"
;
service
MyService
{
rpc
MyMethod
(
MyRequest
)
returns
(
MyResponse
);
}
message
MyRequest
{
string
path
=
1
;
}
message
MyResponse
{
int32
status
=
2
;
}