This commit is contained in:
Andrey Parhomenko 2023-12-14 22:02:39 +03:00
parent 1f82aa46d7
commit d523423d8d
7 changed files with 8 additions and 8 deletions

View file

@ -2,7 +2,7 @@ package main
import (
"fmt"
"github.com/omnipunk/gods/lists"
"github.com/di4f/gods/lists"
"strings"
)

View file

@ -1,7 +1,7 @@
package main
import (
"github.com/omnipunk/gods/maps"
"github.com/di4f/gods/maps"
"fmt"
)

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/omnipunk/gods
module github.com/di4f/gods
go 1.21

View file

@ -1,8 +1,8 @@
package lists
import (
"github.com/omnipunk/gods"
"github.com/omnipunk/gods/stacks"
"github.com/di4f/gods"
"github.com/di4f/gods/stacks"
)
// The interface all the lists must implement.

View file

@ -1,7 +1,7 @@
package lists
import (
"github.com/omnipunk/gods"
"github.com/di4f/gods"
"sort"
"fmt"
)

View file

@ -2,7 +2,7 @@ package maps
import (
"fmt"
"github.com/omnipunk/gods"
"github.com/di4f/gods"
)
// Generic map interface for all the maps.

View file

@ -1,7 +1,7 @@
package stacks
import (
"github.com/omnipunk/gods"
"github.com/di4f/gods"
)
type Stack[V any] interface {