boulder/grpc/test_proto/interceptors_test.proto

13 lines
252 B
Protocol Buffer

syntax = "proto2";
option go_package = "test_proto";
service Chiller {
// Sleep for the given amount of time, and return the amount of time slept.
rpc Chill(Time) returns (Time) {}
}
message Time {
optional int64 time = 1; // In nanoseconds
}