editions.go 434 B

12345678910111213
  1. // Copyright 2024 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Package editionssupport defines constants for editions that are supported.
  5. package editionssupport
  6. import descriptorpb "google.golang.org/protobuf/types/descriptorpb"
  7. const (
  8. Minimum = descriptorpb.Edition_EDITION_PROTO2
  9. Maximum = descriptorpb.Edition_EDITION_2023
  10. )