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