...
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 (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/omnipunk/gods/lists"
|
"github.com/di4f/gods/lists"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/omnipunk/gods/maps"
|
"github.com/di4f/gods/maps"
|
||||||
"fmt"
|
"fmt"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
||||||
module github.com/omnipunk/gods
|
module github.com/di4f/gods
|
||||||
|
|
||||||
go 1.21
|
go 1.21
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package lists
|
package lists
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/omnipunk/gods"
|
"github.com/di4f/gods"
|
||||||
"github.com/omnipunk/gods/stacks"
|
"github.com/di4f/gods/stacks"
|
||||||
)
|
)
|
||||||
|
|
||||||
// The interface all the lists must implement.
|
// The interface all the lists must implement.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package lists
|
package lists
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/omnipunk/gods"
|
"github.com/di4f/gods"
|
||||||
"sort"
|
"sort"
|
||||||
"fmt"
|
"fmt"
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,7 +2,7 @@ package maps
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/omnipunk/gods"
|
"github.com/di4f/gods"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Generic map interface for all the maps.
|
// Generic map interface for all the maps.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package stacks
|
package stacks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/omnipunk/gods"
|
"github.com/di4f/gods"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Stack[V any] interface {
|
type Stack[V any] interface {
|
||||||
|
|
Loading…
Reference in a new issue