mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2024-12-28 00:19:55 +00:00
b7197c14de
Temporarily remove the dependency on github.com/golang/protobuf and add it back in a subsequent CL. This allows us to break some of the infinite cycles of old versions in the go.sum file. Change-Id: Ifb5c2c160713d47a43ba2bcedc18ebe2ce33dcea Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/262683 Trust: Joe Tsai <joetsai@digital-static.net> Reviewed-by: Damien Neil <dneil@google.com>
15 lines
465 B
Go
15 lines
465 B
Go
// Copyright 2020 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.
|
|
|
|
// +build weak_dependency
|
|
|
|
package weakdeps
|
|
|
|
import (
|
|
// Ensure that any program using "github.com/golang/protobuf"
|
|
// uses a version that wraps this module so that there is a
|
|
// unified view on what protobuf types are globally registered.
|
|
// _ "github.com/golang/protobuf/proto" // TODO: add this back
|
|
)
|