1 2 3 4 5 6 7 8 9 10 11
syntax = "proto3"; package test; service TestService { rpc Test (TestRequest) returns (TestResponse); } message TestRequest { string name = 1; } message TestResponse { string message = 1; }