Fix services using non-pythonified field names

This commit is contained in:
andrei
2020-05-04 15:12:57 -07:00
committed by Nat Noordanus
parent 4a2baf3f0a
commit 983e0895a2
2 changed files with 8 additions and 4 deletions

View File

@@ -5,3 +5,7 @@ message Test {
int32 with = 2;
int32 as = 3;
}
service TestService {
rpc GetTest(Test) returns (Test) {}
}