Skip to content

Commit

Permalink
Migrate to gosrc.io
Browse files Browse the repository at this point in the history
  • Loading branch information
mremond committed Jan 24, 2019
1 parent 9c905be commit f305eba
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion backoff.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TODO: Implement Backoff Ticker channel
TODO: Implement throttler interface. Throttler could be used to implement various reconnect strategies.
*/

package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"math"
Expand Down
2 changes: 1 addition & 1 deletion backoff_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"testing"
Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion client_manager.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import "log"

Expand Down
4 changes: 2 additions & 2 deletions client_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package mqtt_test // import "fluux.io/mqtt"
package mqtt_test // import "gosrc.io/mqtt"

import (
"log"
"net"
"testing"
"time"

"fluux.io/mqtt"
"gosrc.io/mqtt"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion control_packets.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"encoding/binary"
Expand Down
2 changes: 1 addition & 1 deletion control_packets_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ You can use the MQTT client directly at the low-level and handle connection even
If you want to have sane default behaviour for handling reconnect, you can directly rely on the connection manager
struct.
*/
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"
2 changes: 1 addition & 1 deletion encoding.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"encoding/binary"
Expand Down
2 changes: 1 addition & 1 deletion encoding_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion examples/mqtt_pub/mqtt_pub.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"syscall"
"time"

"fluux.io/mqtt"
"gosrc.io/mqtt"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/mqtt_sub/mqtt_sub.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package main
import (
"log"

"fluux.io/mqtt"
"gosrc.io/mqtt"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/mqtt_temp_sub/mqtt_temp_pub.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"fluux.io/mqtt"
"gosrc.io/mqtt"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion keepalive.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import "time"

Expand Down
2 changes: 1 addition & 1 deletion receiver.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"io"
Expand Down
2 changes: 1 addition & 1 deletion sender.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mqtt // import "fluux.io/mqtt"
package mqtt // import "gosrc.io/mqtt"

import (
"io"
Expand Down

0 comments on commit f305eba

Please sign in to comment.