mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
17 lines
280 B
Protocol Buffer
17 lines
280 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
message RangeProto {
|
|
optional int32 start = 1;
|
|
optional int32 step = 2 [default = 1];
|
|
optional int32 end = 3;
|
|
repeated int32 also = 4;
|
|
}
|
|
|
|
extend google.protobuf.FieldOptions {
|
|
optional string help = 50000;
|
|
}
|
|
|
|
|