From d523423d8d5e3a4b445e917c5277ba8742cebbad Mon Sep 17 00:00:00 2001 From: surdeus Date: Thu, 14 Dec 2023 22:02:39 +0300 Subject: [PATCH] ... --- cmd/ll/main.go | 2 +- cmd/sparse/main.go | 2 +- go.mod | 2 +- lists/main.go | 4 ++-- lists/single.go | 2 +- maps/main.go | 2 +- stacks/main.go | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cmd/ll/main.go b/cmd/ll/main.go index dea05fe..35236f3 100644 --- a/cmd/ll/main.go +++ b/cmd/ll/main.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/omnipunk/gods/lists" + "github.com/di4f/gods/lists" "strings" ) diff --git a/cmd/sparse/main.go b/cmd/sparse/main.go index f242742..dff753d 100644 --- a/cmd/sparse/main.go +++ b/cmd/sparse/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/omnipunk/gods/maps" + "github.com/di4f/gods/maps" "fmt" ) diff --git a/go.mod b/go.mod index 1e270da..5e231f3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/omnipunk/gods +module github.com/di4f/gods go 1.21 diff --git a/lists/main.go b/lists/main.go index ceb48b2..f861baf 100644 --- a/lists/main.go +++ b/lists/main.go @@ -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. diff --git a/lists/single.go b/lists/single.go index 4984900..bcd8d0a 100644 --- a/lists/single.go +++ b/lists/single.go @@ -1,7 +1,7 @@ package lists import ( - "github.com/omnipunk/gods" + "github.com/di4f/gods" "sort" "fmt" ) diff --git a/maps/main.go b/maps/main.go index 7b4bed1..3911e23 100644 --- a/maps/main.go +++ b/maps/main.go @@ -2,7 +2,7 @@ package maps import ( "fmt" - "github.com/omnipunk/gods" + "github.com/di4f/gods" ) // Generic map interface for all the maps. diff --git a/stacks/main.go b/stacks/main.go index 80e1442..0815509 100644 --- a/stacks/main.go +++ b/stacks/main.go @@ -1,7 +1,7 @@ package stacks import ( - "github.com/omnipunk/gods" + "github.com/di4f/gods" ) type Stack[V any] interface {