mirror of
https://github.com/luxfi/metric.git
synced 2026-07-27 04:12:44 +00:00
15 lines
289 B
Go
15 lines
289 B
Go
//go:build !metrics
|
|
|
|
// Copyright (C) 2026, Lux Partners Limited. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package metric
|
|
|
|
func init() {
|
|
r := NewNoOpRegistry()
|
|
DefaultRegistry = r
|
|
DefaultRegisterer = r
|
|
DefaultGatherer = r
|
|
defaultFactory = NewNoOpFactory()
|
|
}
|