summaryrefslogtreecommitdiff
path: root/examples/example.proto
blob: 231c455ca18b1047514a43ab648abe61629ad9cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// upb - a minimalist implementation of protocol buffers.
//
// Copyright (c) 2011 Google Inc.  See LICENSE for details.
// Author: Josh Haberman <jhaberman@gmail.com>
//
// A .proto file for the examples in this directory.

package example;

message SampleMessage {
  optional string name = 1;
  optional int32 id = 2;
  optional string email = 3;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback