...
This commit is contained in:
parent
1f82aa46d7
commit
d523423d8d
7 changed files with 8 additions and 8 deletions
|
@ -2,7 +2,7 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/omnipunk/gods/lists"
|
||||
"github.com/di4f/gods/lists"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"github.com/omnipunk/gods/maps"
|
||||
"github.com/di4f/gods/maps"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/omnipunk/gods
|
||||
module github.com/di4f/gods
|
||||
|
||||
go 1.21
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package lists
|
||||
|
||||
import (
|
||||
"github.com/omnipunk/gods"
|
||||
"github.com/di4f/gods"
|
||||
"sort"
|
||||
"fmt"
|
||||
)
|
||||
|
|
|
@ -2,7 +2,7 @@ package maps
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/omnipunk/gods"
|
||||
"github.com/di4f/gods"
|
||||
)
|
||||
|
||||
// Generic map interface for all the maps.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package stacks
|
||||
|
||||
import (
|
||||
"github.com/omnipunk/gods"
|
||||
"github.com/di4f/gods"
|
||||
)
|
||||
|
||||
type Stack[V any] interface {
|
||||
|
|
Loading…
Reference in a new issue