fhmq/hmq#2 added full package ref

This commit is contained in:
Marc Magnin
2018-01-23 15:29:16 +01:00
parent 0439e7ce90
commit ca3951769a
3 changed files with 6 additions and 3 deletions

View File

@@ -1,9 +1,10 @@
package broker
import (
"hmq/lib/acl"
"strings"
"github.com/fhmq/hmq/lib/acl"
log "github.com/cihub/seelog"
"github.com/fsnotify/fsnotify"
)

View File

@@ -2,7 +2,6 @@ package broker
import (
"crypto/tls"
"hmq/lib/acl"
"net"
"net/http"
"runtime/debug"
@@ -10,6 +9,8 @@ import (
"sync/atomic"
"time"
"github.com/fhmq/hmq/lib/acl"
"github.com/eclipse/paho.mqtt.golang/packets"
"github.com/shirou/gopsutil/mem"

View File

@@ -1,11 +1,12 @@
package main
import (
"hmq/broker"
"os"
"os/signal"
"runtime"
"github.com/fhmq/hmq/broker"
log "github.com/cihub/seelog"
)