Skip to content

Commit

Permalink
chore: test importing empty in echo.proto
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Stewart <[email protected]>
  • Loading branch information
paralin committed May 16, 2024
1 parent 752e2c8 commit 85141cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions testproto/echo/echo.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions testproto/echo/echo.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";
package echo;

import "google/protobuf/timestamp.proto";
import "google/protobuf/empty.proto";

// Echoer service returns the given message.
service Echoer {
Expand All @@ -13,6 +14,8 @@ service Echoer {
rpc EchoClientStream(stream EchoMsg) returns (EchoMsg);
// EchoBidiStream is an example of a two-way stream.
rpc EchoBidiStream(stream EchoMsg) returns (stream EchoMsg);
// DoNothing does nothing.
rpc DoNothing(.google.protobuf.Empty) returns (.google.protobuf.Empty);
}

// ExampleEnum is an example enumeration.
Expand Down

0 comments on commit 85141cd

Please sign in to comment.