1syntax = "proto3";
2package example.msgs;
3
4import "google/protobuf/empty.proto";
5
6service ExampleService {
7    rpc nothing(google.protobuf.Empty) returns (google.protobuf.Empty) {}
8}
9