This repository has been archived on 2025-03-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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) {}