syntax = "proto3"; service ServeSeconds { rpc GetSeconds(GetSecondsRequest) returns (GetSecondsResponse); } message GetSecondsRequest { string timezone = 1; } message GetSecondsResponse { uint32 seconds = 1; }