Browse Source

depend on windows-safe version of go-metrics

Alan Shreve 12 years ago
parent
commit
bf5420e382

+ 1 - 1
src/ngrok/client/metrics.go

@@ -1,7 +1,7 @@
 package client
 
 import (
-	metrics "github.com/rcrowley/go-metrics"
+	metrics "github.com/inconshreveable/go-metrics"
 )
 
 const (

+ 1 - 1
src/ngrok/client/state.go

@@ -1,7 +1,7 @@
 package client
 
 import (
-	metrics "github.com/rcrowley/go-metrics"
+	metrics "github.com/inconshreveable/go-metrics"
 	"ngrok/proto"
 )
 

+ 1 - 1
src/ngrok/client/ui/interface.go

@@ -1,7 +1,7 @@
 package ui
 
 import (
-	metrics "github.com/rcrowley/go-metrics"
+	metrics "github.com/inconshreveable/go-metrics"
 	"ngrok/proto"
 )
 

+ 1 - 1
src/ngrok/proto/http.go

@@ -1,7 +1,7 @@
 package proto
 
 import (
-	metrics "github.com/rcrowley/go-metrics"
+	metrics "github.com/inconshreveable/go-metrics"
 	"net/http"
 	"net/http/httputil"
 	"ngrok/conn"

+ 1 - 1
src/ngrok/server/metrics.go

@@ -3,7 +3,7 @@ package server
 import (
 	log "code.google.com/p/log4go"
 	"encoding/json"
-	gometrics "github.com/rcrowley/go-metrics"
+	gometrics "github.com/inconshreveable/go-metrics"
 	"time"
 )