forked from mirror/client_golang
Run gofmt on corpus and include deprecation.
This commit is contained in:
parent
ee7ab62137
commit
95af66aca5
|
@ -50,7 +50,6 @@ type container struct {
|
||||||
name string
|
name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
type registry struct {
|
type registry struct {
|
||||||
mutex sync.RWMutex
|
mutex sync.RWMutex
|
||||||
signatureContainers map[string]container
|
signatureContainers map[string]container
|
||||||
|
@ -66,6 +65,9 @@ type Registry interface {
|
||||||
// Create a http.HandlerFunc that is tied to a Registry such that requests
|
// Create a http.HandlerFunc that is tied to a Registry such that requests
|
||||||
// against it generate a representation of the housed metrics.
|
// against it generate a representation of the housed metrics.
|
||||||
Handler() http.HandlerFunc
|
Handler() http.HandlerFunc
|
||||||
|
// This is a legacy version of Handler and is deprecated. Please stop
|
||||||
|
// using.
|
||||||
|
YieldExporter() http.HandlerFunc
|
||||||
}
|
}
|
||||||
|
|
||||||
// This builds a new metric registry. It is not needed in the majority of
|
// This builds a new metric registry. It is not needed in the majority of
|
||||||
|
|
Loading…
Reference in New Issue