diff --git a/samples/custom_store.go b/samples/custom_store.go index 03f19e3f..3fd09093 100644 --- a/samples/custom_store.go +++ b/samples/custom_store.go @@ -19,7 +19,7 @@ package main import "fmt" import "time" -import MQTT "" +import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git" // This NoOpStore type implements the go-mqtt/Store interface, which // allows it to be used by the go-mqtt client library. However, it is diff --git a/samples/reconnect.go b/samples/reconnect.go index 6db019b2..86ffc6dc 100644 --- a/samples/reconnect.go +++ b/samples/reconnect.go @@ -17,7 +17,7 @@ package main import "fmt" import "flag" import "time" -import MQTT "" +import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git" /* Options: diff --git a/samples/routing.go b/samples/routing.go index ce27fd8f..77081409 100644 --- a/samples/routing.go +++ b/samples/routing.go @@ -28,7 +28,7 @@ must wait for messages to be published. package main import "fmt" -import MQTT "" +import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git" var broker_load = make(chan bool) var broker_connection = make(chan bool) diff --git a/samples/sample.go b/samples/sample.go index e36d478f..4f60c76c 100644 --- a/samples/sample.go +++ b/samples/sample.go @@ -16,7 +16,7 @@ package main import "fmt" import "flag" -import MQTT "" +import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git" /* Options: diff --git a/samples/simple.go b/samples/simple.go index ac2ff3c2..13fc8c9a 100644 --- a/samples/simple.go +++ b/samples/simple.go @@ -16,7 +16,7 @@ package main import "fmt" import "time" -import MQTT "" +import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git" var f MQTT.MessageHandler = func(msg MQTT.Message) { fmt.Printf("TOPIC: %s\n", msg.Topic()) diff --git a/samples/ssl.go b/samples/ssl.go index d9c74306..3f0f829f 100644 --- a/samples/ssl.go +++ b/samples/ssl.go @@ -45,7 +45,7 @@ import "fmt" import "time" import "crypto/tls" import "crypto/x509" -import MQTT "" +import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git" func NewTlsConfig() *tls.Config { // Import trusted certificates from CAfile.pem. diff --git a/samples/stdinpub.go b/samples/stdinpub.go index 5edadeb5..3320b50f 100644 --- a/samples/stdinpub.go +++ b/samples/stdinpub.go @@ -25,7 +25,7 @@ import ( "time" ) -import MQTT "" +import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git" func main() { stdin := bufio.NewReader(os.Stdin) diff --git a/samples/stdoutsub.go b/samples/stdoutsub.go index 48db023a..3d51d9a0 100644 --- a/samples/stdoutsub.go +++ b/samples/stdoutsub.go @@ -24,7 +24,7 @@ import ( "time" ) -import MQTT "" +import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git" func onMessageReceived(message MQTT.Message) { fmt.Printf("Received message on topic: %s\n", message.Topic())