1
0
mirror of https://github.com/shirou/mqttcli.git synced 2025-04-26 13:49:17 +08:00

change to use paho repository on the github.

This commit is contained in:
Shirou WAKAYAMA 2016-02-11 21:54:50 +09:00
parent b943579e06
commit ed631464a3
3 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,9 @@ import (
"strconv"
"strings"
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
log "github.com/Sirupsen/logrus"
simpleJson "github.com/bitly/go-simplejson"
MQTT "github.com/eclipse/paho.mqtt.golang"
)
const DefaultConfigFile = ".mqttcli.cfg" // Under HOME

View File

@ -7,9 +7,9 @@ import (
"sync"
"time"
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
log "github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
MQTT "github.com/eclipse/paho.mqtt.golang"
colorable "github.com/mattn/go-colorable"
)

View File

@ -8,9 +8,9 @@ import (
"io/ioutil"
"sync"
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
log "github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
MQTT "github.com/eclipse/paho.mqtt.golang"
)
var MaxClientIdLen = 8