2020-02-14 17:12:50 +00:00
|
|
|
// 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
|
|
|
|
|
2020-05-26 20:30:59 +00:00
|
|
|
import (
|
2020-10-15 22:20:04 +00:00
|
|
|
// 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
|
2020-05-26 20:30:59 +00:00
|
|
|
)
|