diff --git a/go.mod b/go.mod index 2377120..02b69d1 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/lomtom/go-utils/v2 +module github.com/lomtom/go-utils go 1.18 diff --git a/slice/slice_test.go b/slice/slice_test.go index d17ba5a..c5ecf91 100644 --- a/slice/slice_test.go +++ b/slice/slice_test.go @@ -1,7 +1,7 @@ package slice import ( - "github.com/lomtom/go-utils/v2/assert" + "github.com/lomtom/go-utils/assert" "testing" ) diff --git a/test/cache_test.go b/test/cache_test.go index ea9e97a..ccfb1c2 100644 --- a/test/cache_test.go +++ b/test/cache_test.go @@ -2,7 +2,7 @@ package test import ( "fmt" - "github.com/lomtom/go-utils/v2/cache" + "github.com/lomtom/go-utils/cache" "testing" "time" ) diff --git a/test/job_test.go b/test/job_test.go index b20d8e4..dc7033e 100644 --- a/test/job_test.go +++ b/test/job_test.go @@ -2,7 +2,7 @@ package test import ( "fmt" - "github.com/lomtom/go-utils/v2/job" + "github.com/lomtom/go-utils/job" "testing" "time" )