Skip to content

Commit 4840bcf

Browse files
authored
proper import path for module (#34)
Signed-off-by: Ziv Nevo <[email protected]>
1 parent e73d752 commit 4840bcf

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

cmd/nettop/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"os"
55

6-
"github.com/cluster-topology-analyzer/pkg/common"
7-
"github.com/cluster-topology-analyzer/pkg/controller"
6+
"github.com/np-guard/cluster-topology-analyzer/pkg/common"
7+
"github.com/np-guard/cluster-topology-analyzer/pkg/controller"
88
"go.uber.org/zap"
99
)
1010

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cluster-topology-analyzer
1+
module github.com/np-guard/cluster-topology-analyzer
22

33
go 1.17
44

pkg/analyzer/scan.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
"github.com/cluster-topology-analyzer/pkg/common"
8+
"github.com/np-guard/cluster-topology-analyzer/pkg/common"
99
"go.uber.org/zap"
1010
v1 "k8s.io/api/core/v1"
1111
)

pkg/controller/connections.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/cluster-topology-analyzer/pkg/common"
7+
"github.com/np-guard/cluster-topology-analyzer/pkg/common"
88
"go.uber.org/zap"
99
)
1010

pkg/controller/controller_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"testing"
1212

13-
"github.com/cluster-topology-analyzer/pkg/common"
13+
"github.com/np-guard/cluster-topology-analyzer/pkg/common"
1414
)
1515

1616
// TestOutput calls controller.Start() with an example repo dir tests/onlineboutique/ ,

pkg/controller/engine.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"fmt"
77
"os"
88

9-
"github.com/cluster-topology-analyzer/pkg/analyzer"
10-
"github.com/cluster-topology-analyzer/pkg/common"
9+
"github.com/np-guard/cluster-topology-analyzer/pkg/analyzer"
10+
"github.com/np-guard/cluster-topology-analyzer/pkg/common"
1111
networking "k8s.io/api/networking/v1"
1212

1313
"go.uber.org/zap"

pkg/controller/synth_netpols.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"sort"
66
"strings"
77

8-
"github.com/cluster-topology-analyzer/pkg/common"
8+
"github.com/np-guard/cluster-topology-analyzer/pkg/common"
99
core "k8s.io/api/core/v1"
1010
network "k8s.io/api/networking/v1"
1111
metaV1 "k8s.io/apimachinery/pkg/apis/meta/v1"

0 commit comments

Comments
 (0)