Sign in
fuchsia
/
third_party
/
github.com
/
census-instrumentation
/
opencensus-go
/
4651f24ee1b45bd729a51adb0512c6c6ab8abe24
/
.
/
internal
/
testpb
/
test.proto
blob: b82d128acf6b1adf864fc97e1247ebc1299fa923 [
file
] [
log
] [
blame
]
syntax
=
"proto3"
;
package
testpb
;
message
FooRequest
{
bool
fail
=
1
;
int64
sleep_nanos
=
2
;
}
message
FooResponse
{
}
service
Foo
{
rpc
Single
(
FooRequest
)
returns
(
FooResponse
);
rpc
Multiple
(
stream
FooRequest
)
returns
(
stream
FooResponse
);
}