* Add license attribute to tonic-build * fix(codegen): Fix Empty protobuf type and add unimplemented * Remove syn full feature
8 lines
163 B
Protocol Buffer
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);
|
|
}
|