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