summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo')
-rw-r--r--Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/client.go2
-rw-r--r--Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/server.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/client.go b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/client.go
index 998d54462..45a023175 100644
--- a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/client.go
+++ b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/client.go
@@ -12,7 +12,7 @@ import (
"net/url"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
+ "github.com/gorilla/websocket"
)
var addr = flag.String("addr", "localhost:8080", "http service address")
diff --git a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/server.go b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/server.go
index 87f14ceb5..a685b0974 100644
--- a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/server.go
+++ b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/server.go
@@ -12,7 +12,7 @@ import (
"log"
"net/http"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
+ "github.com/gorilla/websocket"
)
var addr = flag.String("addr", "localhost:8080", "http service address")