-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Protocol Buffers - Google's data interchange format | ||
// Copyright 2008 Google Inc. All rights reserved. | ||
// Copyright 2022 Teppei Fukuda. All rights reserved. | ||
// https://developers.google.com/protocol-buffers/ | ||
|
||
syntax = "proto3"; | ||
|
||
package emptyppb; | ||
|
||
option go_package = "github.com/knqyf263/go-plugin/types/known/emptypb"; | ||
|
||
// A generic empty message that you can re-use to avoid defining duplicated | ||
// empty messages in your APIs. A typical example is to use it as the request | ||
// or the response type of an API method. For instance: | ||
// | ||
// service Foo { | ||
// rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); | ||
// } | ||
// | ||
message Empty {} |