Skip to content

Commit

Permalink
fix #120
Browse files Browse the repository at this point in the history
  • Loading branch information
codemystery committed Aug 5, 2019
1 parent ef2c362 commit 1f9d284
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions internal/broker/broker.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (

"net/http"

"github.com/imdevlab/chaos/internal/pkg/cluster"
"github.com/imdevlab/chaos/internal/pkg/config"
"github.com/imdevlab/chaos/internal/pkg/network/listener"
"github.com/imdevlab/chaos/internal/pkg/network/websocket"
"github.com/imdevlab/g"
"github.com/vgoio/vgo/internal/pkg/cluster"
"github.com/vgoio/vgo/internal/pkg/config"
"github.com/vgoio/vgo/internal/pkg/network/listener"
"github.com/vgoio/vgo/internal/pkg/network/websocket"

"go.uber.org/zap"

Expand Down
4 changes: 2 additions & 2 deletions internal/broker/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"sync/atomic"
"time"

"github.com/imdevlab/chaos/internal/pkg/message"
"github.com/imdevlab/chaos/internal/pkg/network/mqtt"
"github.com/imdevlab/g"
"github.com/vgoio/vgo/internal/pkg/message"
"github.com/vgoio/vgo/internal/pkg/network/mqtt"
"go.uber.org/zap"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import (
"os/signal"
"syscall"

broker "github.com/imdevlab/chaos/internal/broker"
homedir "github.com/mitchellh/go-homedir"
"github.com/spf13/cobra"
"github.com/spf13/viper"
broker "github.com/vgoio/vgo/internal/broker"
)

var cfgFile string
Expand Down
4 changes: 2 additions & 2 deletions internal/pkg/cluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"strings"
"sync"

"github.com/imdevlab/chaos/internal/pkg/config"
"github.com/imdevlab/chaos/internal/pkg/message"
"github.com/imdevlab/g"
"github.com/imdevlab/g/utils"
"github.com/vgoio/vgo/internal/pkg/config"
"github.com/vgoio/vgo/internal/pkg/message"
"github.com/weaveworks/mesh"
"go.uber.org/zap"
)
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package main

import "github.com/imdevlab/chaos/internal/cmd"
import "github.com/vgoio/vgo/internal/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit 1f9d284

Please sign in to comment.