import paths fixed
This commit is contained in:
parent
fc9ef8ee5a
commit
796d068e87
|
@ -1,7 +1,7 @@
|
|||
package gosocketio
|
||||
|
||||
import (
|
||||
"funstream/libs/socket.io/transport"
|
||||
"github.com/graarh/golang-socketio/transport"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -2,7 +2,7 @@ package gosocketio
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"funstream/libs/socket.io/protocol"
|
||||
"github.com/graarh/golang-socketio/protocol"
|
||||
"sync"
|
||||
)
|
||||
|
||||
|
|
4
loop.go
4
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"
|
||||
)
|
||||
|
|
2
send.go
2
send.go
|
@ -4,7 +4,7 @@ import (
|
|||
"encoding/json"
|
||||
"errors"
|
||||
"time"
|
||||
"funstream/libs/socket.io/protocol"
|
||||
"github.com/graarh/golang-socketio/protocol"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
Loading…
Reference in New Issue