Skip to content

Commit

Permalink
fix(Supernet): module paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Khalid-Nowaf committed Jun 30, 2024
1 parent 8c1b3e4 commit 1b7c2bd
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pkg/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/alecthomas/kong"
"github.com/khalid_nowaf/supernet/pkg/supernet"
"github.com/khalid-nowaf/supernet/pkg/supernet"
)

// ResolveCmd represents the command to resolve CIDR conflicts.
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strconv"
"strings"

"github.com/khalid_nowaf/supernet/pkg/supernet"
"github.com/khalid-nowaf/supernet/pkg/supernet"
)

type CIDR struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/reslove.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"os"

"github.com/khalid_nowaf/supernet/pkg/supernet"
"github.com/khalid-nowaf/supernet/pkg/supernet"
)

type ResolveCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/supernet/action.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package supernet

import (
"github.com/khalid_nowaf/supernet/pkg/trie"
"github.com/khalid-nowaf/supernet/pkg/trie"
)

type Action interface {
Expand Down
2 changes: 1 addition & 1 deletion pkg/supernet/conflict.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package supernet

import (
"github.com/khalid_nowaf/supernet/pkg/trie"
"github.com/khalid-nowaf/supernet/pkg/trie"
)

type ConflictType interface {
Expand Down
2 changes: 1 addition & 1 deletion pkg/supernet/option.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package supernet
import (
"fmt"

"github.com/khalid_nowaf/supernet/pkg/trie"
"github.com/khalid-nowaf/supernet/pkg/trie"
)

type Option func(*Supernet) *Supernet
Expand Down
2 changes: 1 addition & 1 deletion pkg/supernet/plan.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package supernet

import "github.com/khalid_nowaf/supernet/pkg/trie"
import "github.com/khalid-nowaf/supernet/pkg/trie"

type PlanStep struct {
Action Action
Expand Down
2 changes: 1 addition & 1 deletion pkg/supernet/results.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net"

"github.com/khalid_nowaf/supernet/pkg/trie"
"github.com/khalid-nowaf/supernet/pkg/trie"
)

// records the outcome of attempting to insert a CIDR for reporting
Expand Down
2 changes: 1 addition & 1 deletion pkg/supernet/supernet.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net"
"strings"

"github.com/khalid_nowaf/supernet/pkg/trie"
"github.com/khalid-nowaf/supernet/pkg/trie"
)

// holds the properties for a CIDR node
Expand Down
2 changes: 1 addition & 1 deletion pkg/supernet/uitls.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package supernet
import (
"net"

"github.com/khalid_nowaf/supernet/pkg/trie"
"github.com/khalid-nowaf/supernet/pkg/trie"
)

// BitsToCidr converts a slice of binary bits into a net.IPNet structure that represents a CIDR.
Expand Down

0 comments on commit 1b7c2bd

Please sign in to comment.