This commit is contained in:
Eden Kirin
2023-03-18 21:30:15 +01:00
commit ce3eff47ea
14 changed files with 312 additions and 0 deletions

View File

@ -0,0 +1,9 @@
syntax = "proto3";
service ServeSeconds {
rpc GetSeconds(GetSecondsRequest) returns (GetSecondsResponse);
}
message GetSecondsRequest { string timezone = 1; }
message GetSecondsResponse { uint32 seconds = 1; }