diff --git a/internal/command/config/model.go b/internal/command/config/model.go index c69309c..4165ea8 100644 --- a/internal/command/config/model.go +++ b/internal/command/config/model.go @@ -1,7 +1,6 @@ package config import ( - "github.com/hckops/hckctl/pkg/util" "net" "strconv" @@ -12,6 +11,7 @@ import ( "github.com/hckops/hckctl/pkg/logger" "github.com/hckops/hckctl/pkg/schema" taskModel "github.com/hckops/hckctl/pkg/task/model" + "github.com/hckops/hckctl/pkg/util" ) // ConfigRef is a wrapper used to avoid global variables. diff --git a/pkg/task/model/task_test.go b/pkg/task/model/task_test.go index e9be97f..cb0c464 100644 --- a/pkg/task/model/task_test.go +++ b/pkg/task/model/task_test.go @@ -1,11 +1,12 @@ package model import ( - commonModel "github.com/hckops/hckctl/pkg/common/model" "strings" "testing" "github.com/stretchr/testify/assert" + + commonModel "github.com/hckops/hckctl/pkg/common/model" ) func TestGenerateName(t *testing.T) {