From 796d068e87e6664b49eedfbfa2006525d2695fe1 Mon Sep 17 00:00:00 2001 From: Gennadii Kovalev Date: Wed, 18 May 2016 22:55:49 +0200 Subject: [PATCH] import paths fixed --- client.go | 2 +- handler.go | 2 +- loop.go | 4 ++-- send.go | 2 +- server.go | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client.go b/client.go index ebe9590..0968347 100644 --- a/client.go +++ b/client.go @@ -1,7 +1,7 @@ package gosocketio import ( - "funstream/libs/socket.io/transport" + "github.com/graarh/golang-socketio/transport" ) const ( diff --git a/handler.go b/handler.go index 4fd1abe..ca143ce 100644 --- a/handler.go +++ b/handler.go @@ -2,7 +2,7 @@ package gosocketio import ( "encoding/json" - "funstream/libs/socket.io/protocol" + "github.com/graarh/golang-socketio/protocol" "sync" ) diff --git a/loop.go b/loop.go index d217b54..be271b8 100644 --- a/loop.go +++ b/loop.go @@ -3,8 +3,8 @@ package gosocketio import ( "encoding/json" "errors" - "funstream/libs/socket.io/protocol" - "funstream/libs/socket.io/transport" + "github.com/graarh/golang-socketio/protocol" + "github.com/graarh/golang-socketio/transport" "sync" "time" ) diff --git a/send.go b/send.go index 663e99d..7f87601 100644 --- a/send.go +++ b/send.go @@ -4,7 +4,7 @@ import ( "encoding/json" "errors" "time" - "funstream/libs/socket.io/protocol" + "github.com/graarh/golang-socketio/protocol" ) var ( diff --git a/server.go b/server.go index 0097965..bb7adee 100644 --- a/server.go +++ b/server.go @@ -7,12 +7,12 @@ import ( "encoding/json" "errors" "fmt" - "funstream/libs/socket.io/transport" + "github.com/graarh/golang-socketio/protocol" + "github.com/graarh/golang-socketio/transport" "math/rand" "net/http" "sync" "time" - "funstream/libs/socket.io/protocol" ) var (