
pin dependency github.com/beorn7/perks from v1.0.0 to v1.0.1 pin dependency github.com/golang/protobuf from v1.3.3 to v1.4.2 pin denpendency github.com/json-iterator/go from v1.1.8 to v1.1.9 pin dependency github.com/prometheus/common from v0.4.1 to v0.9.1 pin dependency github.com/prometheus/procfs from v0.0.5 to v0.0.11 pin dependency github.com/alecthomas/template from v0.0.0-20160405071501-a0175ee3bccc to v0.0.0-20190718012654-fb15b899a751 pin dependency github.com/alecthomas/units from v0.0.0-20151022065526-2efee857e7cf to v0.0.0-20190717042225-c3de453c63f4 pin dependency github.com/go-kit/kit from v0.8.0 to v0.9.0 pin dependency github.com/go-logfmt/logfmt from v0.3.0 to v0.4.0 Co-Authored-By: Jordan Liggitt <jordan@liggitt.net>
30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
// Copyright 2018 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 pragma provides types that can be embedded into a struct to
|
|
// statically enforce or prevent certain language properties.
|
|
package pragma
|
|
|
|
import "sync"
|
|
|
|
// NoUnkeyedLiterals can be embedded in a struct to prevent unkeyed literals.
|
|
type NoUnkeyedLiterals struct{}
|
|
|
|
// DoNotImplement can be embedded in an interface to prevent trivial
|
|
// implementations of the interface.
|
|
//
|
|
// This is useful to prevent unauthorized implementations of an interface
|
|
// so that it can be extended in the future for any protobuf language changes.
|
|
type DoNotImplement interface{ ProtoInternal(DoNotImplement) }
|
|
|
|
// DoNotCompare can be embedded in a struct to prevent comparability.
|
|
type DoNotCompare [0]func()
|
|
|
|
// DoNotCopy can be embedded in a struct to help prevent shallow copies.
|
|
// This does not rely on a Go language feature, but rather a special case
|
|
// within the vet checker.
|
|
//
|
|
// See https://golang.org/issues/8005.
|
|
type DoNotCopy [0]sync.Mutex
|