Files
clocker-demo/src/protos/serve_seconds.proto
Eden Kirin ce3eff47ea Initial
2023-03-18 21:30:15 +01:00

10 lines
215 B
Protocol Buffer

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