mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 06:55:06 +01:00
15 lines
291 B
Protocol Buffer
15 lines
291 B
Protocol Buffer
syntax = "proto3";
|
|
package proto;
|
|
|
|
option java_package = "com.google.protobuf";
|
|
option java_outer_classname = "VTProto";
|
|
option go_package = "beyond-go/proto/pbcommon;pbcommon";
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
message Opts {
|
|
oneof _unique {
|
|
bool unique = 1;
|
|
}
|
|
}
|