This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
trantor/lib/instrument/dummy.go
2017-06-07 22:00:17 +00:00

11 lines
165 B
Go

// +build noprometheus
package instrument
type dummyInst struct{}
func Init() Instrument {
return &dummyInst{}
}
func (i dummyInst) Request(req RequestData) {}