update packets library import reference

This commit is contained in:
mochi
2022-01-05 17:01:15 +00:00
parent 66edb0564c
commit b5685ca0ee
6 changed files with 6 additions and 6 deletions

View File

@@ -13,9 +13,9 @@ import (
"github.com/rs/xid"
"github.com/mochi-co/mqtt/server/internal/circ"
"github.com/mochi-co/mqtt/server/internal/packets"
"github.com/mochi-co/mqtt/server/internal/topics"
"github.com/mochi-co/mqtt/server/listeners/auth"
"github.com/mochi-co/mqtt/server/packets"
"github.com/mochi-co/mqtt/server/system"
)

View File

@@ -10,8 +10,8 @@ import (
"time"
"github.com/mochi-co/mqtt/server/internal/circ"
"github.com/mochi-co/mqtt/server/internal/packets"
"github.com/mochi-co/mqtt/server/listeners/auth"
"github.com/mochi-co/mqtt/server/packets"
"github.com/mochi-co/mqtt/server/system"
"github.com/stretchr/testify/require"
)

View File

@@ -4,7 +4,7 @@ import (
"strings"
"sync"
"github.com/mochi-co/mqtt/server/internal/packets"
"github.com/mochi-co/mqtt/server/packets"
)
// Subscriptions is a map of subscriptions keyed on client.

View File

@@ -5,7 +5,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/mochi-co/mqtt/server/internal/packets"
"github.com/mochi-co/mqtt/server/packets"
)
func TestNew(t *testing.T) {

View File

@@ -11,10 +11,10 @@ import (
"github.com/mochi-co/mqtt/server/internal/circ"
"github.com/mochi-co/mqtt/server/internal/clients"
"github.com/mochi-co/mqtt/server/internal/packets"
"github.com/mochi-co/mqtt/server/internal/topics"
"github.com/mochi-co/mqtt/server/listeners"
"github.com/mochi-co/mqtt/server/listeners/auth"
"github.com/mochi-co/mqtt/server/packets"
"github.com/mochi-co/mqtt/server/persistence"
"github.com/mochi-co/mqtt/server/system"
)

View File

@@ -13,10 +13,10 @@ import (
"github.com/mochi-co/mqtt/server/internal/circ"
"github.com/mochi-co/mqtt/server/internal/clients"
"github.com/mochi-co/mqtt/server/internal/packets"
"github.com/mochi-co/mqtt/server/internal/topics"
"github.com/mochi-co/mqtt/server/listeners"
"github.com/mochi-co/mqtt/server/listeners/auth"
"github.com/mochi-co/mqtt/server/packets"
"github.com/mochi-co/mqtt/server/persistence"
"github.com/mochi-co/mqtt/server/system"
)