fix(build): Fix service and rpc name conflict (#92)

Closes #89
This commit is contained in:
Lucio Franco
2019-10-23 15:01:04 -04:00
committed by GitHub
parent 50424a66ef
commit 1dbde95d84
11 changed files with 63 additions and 16 deletions
+13
View File
@@ -0,0 +1,13 @@
syntax = "proto3";
package wellknown;
import "google/protobuf/empty.proto";
import "google/protobuf/wrappers.proto";
import "google/protobuf/any.proto";
service Admin {
rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty);
rpc StringCall(google.protobuf.StringValue) returns (google.protobuf.Empty);
rpc AnyCall(google.protobuf.Any) returns (google.protobuf.Empty);
}