Skip to content

Commit 9fb25cc

Browse files
committed
fix: req/res structs
1 parent 6e0ede6 commit 9fb25cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proto/bottles.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ syntax = "proto3";
33
package bottles;
44

55
service Bottles {
6-
rpc Health (BottlesRequest) returns (BottlesResponse);
6+
rpc Health (HealthRequest) returns (HealthResponse);
77
}
88

9-
message BottlesRequest {}
9+
message HealthRequest {}
1010

11-
message BottlesResponse {
11+
message HealthResponse {
1212
bool ok = 1;
1313
}

0 commit comments

Comments
 (0)