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.
|
|
|
|
|
2021-12-06 22:18:55 +00:00
|
|
|
//go:build weak_dependency
|
2020-02-14 17:12:50 +00:00
|
|
|
// +build weak_dependency
|
|
|
|
|
|
|
|
package weakdeps
|
|
|
|
|
2020-05-26 20:30:59 +00:00
|
|
|
import (
|
2020-10-15 22:25:40 +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"
|
2020-05-26 20:30:59 +00:00
|
|
|
)
|