diff --git a/plugins/dashboard/plugin.go b/plugins/dashboard/plugin.go index a5815826a38115fca41156cde62e9dc2d631115d..1601f24377e582d5ee1e901722d98d50003d7c18 100644 --- a/plugins/dashboard/plugin.go +++ b/plugins/dashboard/plugin.go @@ -1,16 +1,15 @@ package dashboard import ( - "github.com/iotaledger/hive.go/logger" "net/http" "time" - "golang.org/x/net/context" - "github.com/iotaledger/goshimmer/plugins/metrics" "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/hive.go/events" + "github.com/iotaledger/hive.go/logger" "github.com/iotaledger/hive.go/node" + "golang.org/x/net/context" ) var server *http.Server diff --git a/plugins/gossip/neighbors.go b/plugins/gossip/neighbors.go index ef3431c14ccd5fa76bb81a8e58cb30e915394457..d224dd04f44a68cfbd4e0c01cbad938cfd307b53 100644 --- a/plugins/gossip/neighbors.go +++ b/plugins/gossip/neighbors.go @@ -8,10 +8,10 @@ import ( "time" "github.com/iotaledger/goshimmer/packages/accountability" - "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/goshimmer/packages/errors" "github.com/iotaledger/goshimmer/packages/identity" "github.com/iotaledger/goshimmer/packages/network" + "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/hive.go/events" "github.com/iotaledger/hive.go/node" ) diff --git a/plugins/gossip/send_queue.go b/plugins/gossip/send_queue.go index b3b78bb0d790ee6cb93d2aaf187097057e46d9b4..c85502895189fc49a46c1013ad21cbf2f57f004e 100644 --- a/plugins/gossip/send_queue.go +++ b/plugins/gossip/send_queue.go @@ -3,8 +3,8 @@ package gossip import ( "sync" - "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/goshimmer/packages/model/meta_transaction" + "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/hive.go/events" "github.com/iotaledger/hive.go/node" ) diff --git a/plugins/gossip/server.go b/plugins/gossip/server.go index 99520078df9b639c4dd66644608a710a02aa7de8..ec5e146dfa0316b441dc3c978b7686ec3d19d4e8 100644 --- a/plugins/gossip/server.go +++ b/plugins/gossip/server.go @@ -2,11 +2,11 @@ package gossip import ( "github.com/iotaledger/goshimmer/packages/accountability" - "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/goshimmer/packages/errors" "github.com/iotaledger/goshimmer/packages/identity" "github.com/iotaledger/goshimmer/packages/network" "github.com/iotaledger/goshimmer/packages/network/tcp" + "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/hive.go/events" "github.com/iotaledger/hive.go/node" "github.com/iotaledger/hive.go/parameter" diff --git a/plugins/ui/ui.go b/plugins/ui/ui.go index f4e5afad688edadaa39e3be881a63cc73d3f93a5..3844e08773bf932c681f364e604813aeba8b2fdd 100644 --- a/plugins/ui/ui.go +++ b/plugins/ui/ui.go @@ -1,7 +1,6 @@ package ui import ( - "github.com/iotaledger/hive.go/logger" "net/http" "strings" "sync/atomic" @@ -14,8 +13,8 @@ import ( "github.com/iotaledger/goshimmer/plugins/webapi" "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/hive.go/events" + "github.com/iotaledger/hive.go/logger" "github.com/iotaledger/hive.go/node" - "github.com/labstack/echo" ) diff --git a/plugins/webapi/plugin.go b/plugins/webapi/plugin.go index e73d1a09e22272f4ac6c5eb8d0c59610e77019d1..325a0918618da76020782270b04b50c1af6b39bf 100644 --- a/plugins/webapi/plugin.go +++ b/plugins/webapi/plugin.go @@ -2,11 +2,11 @@ package webapi import ( "context" - "github.com/iotaledger/hive.go/logger" "time" "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/hive.go/events" + "github.com/iotaledger/hive.go/logger" "github.com/iotaledger/hive.go/node" "github.com/labstack/echo" )