enum.proto 345 B

123456789101112131415
  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 = "proto3";
  5. package goproto.protoc.proto3;
  6. option go_package = "google.golang.org/protobuf/cmd/protoc-gen-go/testdata/proto3";
  7. enum Enum {
  8. ZERO = 0;
  9. ONE = 1;
  10. TWO = 2;
  11. }