mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
11 lines
177 B
Protocol Buffer
11 lines
177 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package proto3extension;
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
extend google.protobuf.FieldOptions {
|
|
bool primary = 51234;
|
|
bool index = 51235;
|
|
}
|
|
|