nopackage.proto 356 B

12345678910111213141516
  1. // Copyright 2018 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. syntax = "proto2";
  5. // File contains no 'package' statement.
  6. enum Enum {
  7. ZERO = 0;
  8. }
  9. message Message {
  10. optional string string_field = 1;
  11. optional Enum enum_field = 2 [default=ZERO];
  12. }