feat: MOVE TO OUR SITE.

This commit is contained in:
Andrey Parhomenko 2024-01-06 18:41:04 +03:00
parent d523423d8d
commit c280608f8d
7 changed files with 8 additions and 8 deletions

View file

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

View file

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

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/di4f/gods
module vultras.su/core/gods
go 1.21

View file

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

View file

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

View file

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

View file

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