Files
tonic/tonic-build/tests/protos/empty.proto
T
Lucio FrancoandGitHub 2670b349f9 fix(codegen): Fix Empty protobuf type and add unimplemented (#26)
* Add license attribute to tonic-build

* fix(codegen): Fix Empty protobuf type and add unimplemented

* Remove syn full feature
2019-10-01 23:46:54 -04:00

8 lines
163 B
Protocol Buffer

syntax = "proto3";
package empty;
import "google/protobuf/empty.proto";
service Admin {
rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty);
}