From 7a78cc58d76457e60985dd6be647699f184da087 Mon Sep 17 00:00:00 2001 From: capossele <angelocapossele@gmail.com> Date: Thu, 23 Apr 2020 10:29:12 +0100 Subject: [PATCH] :rotating_light: Fixes import order. --- plugins/analysis/plugin.go | 5 ++--- plugins/analysis/webinterface/httpserver/plugin.go | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/plugins/analysis/plugin.go b/plugins/analysis/plugin.go index d98514a0..5f937180 100644 --- a/plugins/analysis/plugin.go +++ b/plugins/analysis/plugin.go @@ -1,13 +1,12 @@ package analysis import ( - "github.com/iotaledger/hive.go/logger" - "github.com/iotaledger/hive.go/node" - "github.com/iotaledger/goshimmer/plugins/analysis/client" "github.com/iotaledger/goshimmer/plugins/analysis/server" "github.com/iotaledger/goshimmer/plugins/analysis/webinterface" "github.com/iotaledger/goshimmer/plugins/config" + "github.com/iotaledger/hive.go/logger" + "github.com/iotaledger/hive.go/node" ) // PluginName is the name of the analysis plugin. diff --git a/plugins/analysis/webinterface/httpserver/plugin.go b/plugins/analysis/webinterface/httpserver/plugin.go index dbfd4dc8..d32d9d3d 100644 --- a/plugins/analysis/webinterface/httpserver/plugin.go +++ b/plugins/analysis/webinterface/httpserver/plugin.go @@ -6,14 +6,13 @@ import ( "time" "github.com/gobuffalo/packr/v2" + "github.com/iotaledger/goshimmer/packages/shutdown" + "github.com/iotaledger/goshimmer/plugins/config" "github.com/iotaledger/hive.go/daemon" "github.com/iotaledger/hive.go/logger" "github.com/labstack/echo" "golang.org/x/net/context" "golang.org/x/net/websocket" - - "github.com/iotaledger/goshimmer/packages/shutdown" - "github.com/iotaledger/goshimmer/plugins/config" ) var ( -- GitLab