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 5 // Package editionssupport defines constants for editions that are supported. 6 package editionssupport 7 8 import descriptorpb "google.golang.org/protobuf/types/descriptorpb" 9 10 const ( 11 Minimum = descriptorpb.Edition_EDITION_PROTO2 12 Maximum = descriptorpb.Edition_EDITION_2023 13 ) 14