mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-01 11:58:21 +00:00
020ec10f7b
This change add parsing editions specific descriptor parts to internal/filedesc which makes it possible to load file descriptors of protos using editions at runtime. Change-Id: I7a0c23303acddd2cff115859d4cf82bf0102b14c Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/563615 Reviewed-by: Michael Stapelberg <stapelberg@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
13 lines
349 B
Go
13 lines
349 B
Go
// Copyright 2024 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package editiondefaults contains the binary representation of the editions
|
|
// defaults.
|
|
package editiondefaults
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed editions_defaults.binpb
|
|
var Defaults []byte
|