/
githubmirror
/
etcd
Обзор
Документация
Войти
/
githubmirror
/
etcd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
api/versionpb/version.proto
26 строк
1 KB
Jordan Liggitt
Drop marshaler_all, unmarshaler_all, sizer_all gogo options
10 фев 2026, 19:15
10 фев 2026, 19:15
55035ca
Код
Авторство
О чём код?
syntax = "proto3"; package versionpb; import "google/protobuf/descriptor.proto"; option go_package = "go.etcd.io/etcd/api/v3/versionpb"; // Indicates etcd version that introduced the message, used to determine minimal etcd version required to interpret wal that includes this message. extend google.protobuf.MessageOptions { optional string etcd_version_msg = 50000; } // Indicates etcd version that introduced the field, used to determine minimal etcd version required to interpret wal that sets this field. extend google.protobuf.FieldOptions { optional string etcd_version_field = 50001; } // Indicates etcd version that introduced the enum, used to determine minimal etcd version required to interpret wal that uses this enum. extend google.protobuf.EnumOptions { optional string etcd_version_enum = 50002; } // Indicates etcd version that introduced the enum value, used to determine minimal etcd version required to interpret wal that sets this enum value. extend google.protobuf.EnumValueOptions { optional string etcd_version_enum_value = 50003; }