Skip to content

Commit 0b9dca8

Browse files
committed
🚚 Move to github org bigbluebutton-bot
1 parent bbc29a9 commit 0b9dca8

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Examples directory contains simple client and server.
99

1010
### Installation
1111

12-
go get github.com/JulianKropp/golang-socketio
12+
go get github.com/bigbluebutton-bot/golang-socketio
1313

1414
### Simple server usage
1515

β€Ž_examples/client.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"runtime"
66
"time"
77

8-
"github.com/JulianKropp/golang-socketio/transport"
8+
"github.com/bigbluebutton-bot/golang-socketio/transport"
99
)
1010

1111
type Channel struct {

β€Ž_examples/server.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/http"
66
"time"
77

8-
"github.com/JulianKropp/golang-socketio/transport"
8+
"github.com/bigbluebutton-bot/golang-socketio/transport"
99
)
1010

1111
type Channel struct {

β€Žclient.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package gosocketio
33
import (
44
"strconv"
55

6-
"github.com/JulianKropp/golang-socketio/transport"
6+
"github.com/bigbluebutton-bot/golang-socketio/transport"
77
)
88

99
const (

β€Žgo.modβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/JulianKropp/golang-socketio
1+
module github.com/bigbluebutton-bot/golang-socketio
22

33
go 1.19
44

β€Žhandler.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"sync"
77

8-
"github.com/JulianKropp/golang-socketio/protocol"
8+
"github.com/bigbluebutton-bot/golang-socketio/protocol"
99
)
1010

1111
const (

β€Žloop.goβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"sync"
88
"time"
99

10-
"github.com/JulianKropp/golang-socketio/protocol"
11-
"github.com/JulianKropp/golang-socketio/transport"
10+
"github.com/bigbluebutton-bot/golang-socketio/protocol"
11+
"github.com/bigbluebutton-bot/golang-socketio/transport"
1212
)
1313

1414
const (

β€Žsend.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"log"
77
"time"
88

9-
"github.com/JulianKropp/golang-socketio/protocol"
9+
"github.com/bigbluebutton-bot/golang-socketio/protocol"
1010
)
1111

1212
var (

β€Žserver.goβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"sync"
1313
"time"
1414

15-
"github.com/JulianKropp/golang-socketio/protocol"
16-
"github.com/JulianKropp/golang-socketio/transport"
15+
"github.com/bigbluebutton-bot/golang-socketio/protocol"
16+
"github.com/bigbluebutton-bot/golang-socketio/transport"
1717
)
1818

1919
const (

0 commit comments

Comments
Β (0)