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 editiondefaults contains the binary representation of the editions 6 // defaults. 7 package editiondefaults 8 9 import _ "embed" 10 11 //go:embed editions_defaults.binpb 12 var Defaults []byte 13