mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
11 lines
202 B
Go
11 lines
202 B
Go
|
// +build !metrics
|
||
|
|
||
|
package metrics
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
// NewMetricsServer without metrics build flag does not start any metrics server.
|
||
|
func NewMetricsServer(addr string) *http.Server {
|
||
|
return nil
|
||
|
}
|