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 ( import (
"fmt" "fmt"
"github.com/di4f/gods/lists" "vultras.su/core/gods/lists"
"strings" "strings"
) )

View file

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

2
go.mod
View file

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

View file

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

View file

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

View file

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

View file

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