mirror of
https://github.com/luxfi/metric.git
synced 2026-07-27 04:12:44 +00:00
12 lines
252 B
Go
12 lines
252 B
Go
//go:build metrics
|
|
|
|
// Copyright (C) 2026, Lux Partners Limited. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package metric
|
|
|
|
// NewRegistry returns a new in-process registry.
|
|
func NewRegistry() Registry {
|
|
return newRegistry()
|
|
}
|