mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
347 B
14 lines
347 B
10 years ago
|
syntax = "proto2";
|
||
|
|
||
|
package proto2;
|
||
|
|
||
|
// An empty message that you can re-use to avoid defining duplicated empty
|
||
|
// messages in your project. A typical example is to use it as argument or the
|
||
|
// return value of a service API. For instance:
|
||
|
//
|
||
|
// service Foo {
|
||
|
// rpc Bar (proto2.Empty) returns (proto2.Empty) { };
|
||
|
// };
|
||
|
//
|
||
|
message Empty {}
|