blob: adf66b5e614dc51bf180205a4374a79271ad0235 [file] [log] [blame]
Chen Wang86af8cf2015-01-21 18:05:40 -08001syntax = "proto2";
2
3package proto2;
4
5// An empty message that you can re-use to avoid defining duplicated empty
6// messages in your project. A typical example is to use it as argument or the
7// return value of a service API. For instance:
8//
9// service Foo {
10// rpc Bar (proto2.Empty) returns (proto2.Empty) { };
11// };
12//
Chen Wang86af8cf2015-01-21 18:05:40 -080013message Empty {}