Migrate package to forge.cadoles.com/Pyxis namespace
This commit is contained in:
parent
2c44953b9b
commit
c4d6acdb9f
|
@ -9,7 +9,7 @@ Examples directory contains simple client and server.
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
go get github.com/graarh/golang-socketio
|
go get forge.cadoles.com/Pyxis/golang-socketio
|
||||||
|
|
||||||
### Simple server usage
|
### Simple server usage
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
package gosocketio
|
package gosocketio
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/graarh/golang-socketio/transport"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
|
"forge.cadoles.com/Pyxis/golang-socketio/transport"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/graarh/golang-socketio"
|
"forge.cadoles.com/Pyxis/golang-socketio"
|
||||||
"github.com/graarh/golang-socketio/transport"
|
"forge.cadoles.com/Pyxis/golang-socketio/transport"
|
||||||
"log"
|
"log"
|
||||||
"runtime"
|
"runtime"
|
||||||
"time"
|
"time"
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/graarh/golang-socketio"
|
"forge.cadoles.com/Pyxis/golang-socketio"
|
||||||
"github.com/graarh/golang-socketio/transport"
|
"forge.cadoles.com/Pyxis/golang-socketio/transport"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
|
@ -2,7 +2,7 @@ package gosocketio
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"github.com/graarh/golang-socketio/protocol"
|
"forge.cadoles.com/Pyxis/golang-socketio/protocol"
|
||||||
"sync"
|
"sync"
|
||||||
"reflect"
|
"reflect"
|
||||||
)
|
)
|
||||||
|
|
5
loop.go
5
loop.go
|
@ -3,11 +3,12 @@ package gosocketio
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"github.com/graarh/golang-socketio/protocol"
|
|
||||||
"github.com/graarh/golang-socketio/transport"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"forge.cadoles.com/Pyxis/golang-socketio/protocol"
|
||||||
|
"forge.cadoles.com/Pyxis/golang-socketio/transport"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
3
send.go
3
send.go
|
@ -3,9 +3,10 @@ package gosocketio
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"github.com/graarh/golang-socketio/protocol"
|
|
||||||
"log"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"forge.cadoles.com/Pyxis/golang-socketio/protocol"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -7,12 +7,13 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/graarh/golang-socketio/protocol"
|
|
||||||
"github.com/graarh/golang-socketio/transport"
|
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"net/http"
|
"net/http"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"forge.cadoles.com/Pyxis/golang-socketio/protocol"
|
||||||
|
"forge.cadoles.com/Pyxis/golang-socketio/transport"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
Loading…
Reference in New Issue