annotations.proto 454 B

1234567891011121314151617
  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. package goproto.protoc.annotations;
  6. option go_package = "github.com/golang/protobuf/v2/cmd/protoc-gen-go/testdata/annotations";
  7. message AnnotationsTestMessage {
  8. optional string AnnotationsTestField = 1;
  9. }
  10. enum AnnotationsTestEnum {
  11. ANNOTATIONS_TEST_ENUM_VALUE = 0;
  12. }