summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/gorilla
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-11-23 16:02:16 -0800
committer=Corey Hulen <corey@hulen.com>2015-11-23 16:02:16 -0800
commit2639452967e66c4840164c36817234d3e7c12ac1 (patch)
tree3f43e2778e7ff934a60eece0b9a2aede55431ce8 /Godeps/_workspace/src/github.com/gorilla
parent4f4cd5e63573da4d6edcc7d4213afaca67c19f88 (diff)
downloadchat-2639452967e66c4840164c36817234d3e7c12ac1.tar.gz
chat-2639452967e66c4840164c36817234d3e7c12ac1.tar.bz2
chat-2639452967e66c4840164c36817234d3e7c12ac1.zip
Fixing godep
Diffstat (limited to 'Godeps/_workspace/src/github.com/gorilla')
-rw-r--r--Godeps/_workspace/src/github.com/gorilla/mux/mux.go2
-rw-r--r--Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/gorilla/websocket/examples/autobahn/server.go2
-rw-r--r--Godeps/_workspace/src/github.com/gorilla/websocket/examples/chat/conn.go2
-rw-r--r--Godeps/_workspace/src/github.com/gorilla/websocket/examples/command/main.go2
-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
-rw-r--r--Godeps/_workspace/src/github.com/gorilla/websocket/examples/filewatch/main.go2
8 files changed, 8 insertions, 8 deletions
diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/mux.go b/Godeps/_workspace/src/github.com/gorilla/mux/mux.go
index 3c51cca5e..68c4ea5d8 100644
--- a/Godeps/_workspace/src/github.com/gorilla/mux/mux.go
+++ b/Godeps/_workspace/src/github.com/gorilla/mux/mux.go
@@ -11,7 +11,7 @@ import (
"path"
"regexp"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/context"
+ "github.com/gorilla/context"
)
// NewRouter returns a new router instance.
diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go b/Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go
index 0f9bde0c1..d1eae9265 100644
--- a/Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go
+++ b/Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go
@@ -10,7 +10,7 @@ import (
"strings"
"testing"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/context"
+ "github.com/gorilla/context"
)
func (r *Route) GoString() string {
diff --git a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/autobahn/server.go b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/autobahn/server.go
index d0b1c3158..d96ac84db 100644
--- a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/autobahn/server.go
+++ b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/autobahn/server.go
@@ -8,7 +8,7 @@ package main
import (
"errors"
"flag"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
+ "github.com/gorilla/websocket"
"io"
"log"
"net/http"
diff --git a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/chat/conn.go b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/chat/conn.go
index 675d64113..22816f09f 100644
--- a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/chat/conn.go
+++ b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/chat/conn.go
@@ -5,7 +5,7 @@
package main
import (
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
+ "github.com/gorilla/websocket"
"log"
"net/http"
"time"
diff --git a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/command/main.go b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/command/main.go
index 3531b368c..f3f022edb 100644
--- a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/command/main.go
+++ b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/command/main.go
@@ -15,7 +15,7 @@ import (
"text/template"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
+ "github.com/gorilla/websocket"
)
var (
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")
diff --git a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/filewatch/main.go b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/filewatch/main.go
index 04244bc0f..a2c7b85fa 100644
--- a/Godeps/_workspace/src/github.com/gorilla/websocket/examples/filewatch/main.go
+++ b/Godeps/_workspace/src/github.com/gorilla/websocket/examples/filewatch/main.go
@@ -14,7 +14,7 @@ import (
"text/template"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
+ "github.com/gorilla/websocket"
)
const (