Files

15 lines
176 B
Go
Raw Permalink Normal View History

2020-04-06 19:57:19 +08:00
package metric
import (
"sync"
"github.com/prometheus/client_golang/prometheus"
)
var singletonCounter prometheus.Counter
var once sync.Once
func SingletonCounter() {
}