Files
metric/defaults_noop.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()
}