nekoray_Mahdi-zarei/3rdparty/simple-protobuf/test/proto/enum.proto
parhelia512 daa6c93900
refactor: migrate from protobuf to simple-protobuf (#520)
* refactor: migrate from protobuf to simple-protobuf

* update go.mod

* fix server

* Update gRPC.cpp

* Update gRPC.cpp
2025-07-12 15:17:05 -07:00

14 lines
260 B
Protocol Buffer

syntax = "proto3";
package example;
enum SomeEnum {
SOME_ENUM_UNDEFINED = 0;
SOME_ENUM_ONE = 1;
SOME_ENUM_TWO = 2;
SOME_ENUM_THREE = 3;
SOME_ENUM_FOUR = 4;
SOME_ENUM_FIVE = 5;
};
message SomeMessage { repeated SomeEnum values = 1; };