github.com/whiteCcinn/protobuf-go@v1.0.9/internal/testprotos/enums/enums.proto (about)

     1  // Copyright 2021 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  
     5  syntax = "proto2";
     6  
     7  package goproto.proto.enums;
     8  
     9  option go_package = "github.com/whiteCcinn/protobuf-go/internal/testprotos/enums";
    10  
    11  enum Enum {
    12    DEFAULT = 1337;
    13    ZERO = 0;
    14    ONE = 1;
    15    ELEVENT = 11;
    16    SEVENTEEN = 17;
    17    THIRTYSEVEN = 37;
    18    SIXTYSEVEN = 67;
    19    NEGATIVE = -1;
    20  }