mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
13 lines
220 B
Protocol Buffer
13 lines
220 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "arch/brother/brother.proto";
|
|
import "arch/ibm/ibm.proto";
|
|
//import "lib/common.proto";
|
|
|
|
message EncoderProto {
|
|
oneof format {
|
|
IBMOutputProto ibm = 3;
|
|
BrotherOutputProto brother = 4;
|
|
}
|
|
}
|