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