diff --git a/assert/assert_test.go b/assert/assert_test.go index fd0cf0a..6b23267 100644 --- a/assert/assert_test.go +++ b/assert/assert_test.go @@ -3,7 +3,7 @@ package Assert import ( "testing" - Testing "github.com/lbatuska/goutils/testing" + Testing "git.nas-technologies.com/lbatuska/goutils/testing" ) func Test_notNil(t *testing.T) { diff --git a/go.mod b/go.mod index a8a630b..9e1cac8 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/lbatuska/goutils +module git.nas-technologies.com/lbatuska/goutils go 1.23.0 diff --git a/simplerouter/router.go b/simplerouter/router.go index 00365a8..771f98c 100644 --- a/simplerouter/router.go +++ b/simplerouter/router.go @@ -9,7 +9,7 @@ import ( "syscall" "time" - Type "github.com/lbatuska/goutils/type" + Type "git.nas-technologies.com/lbatuska/goutils/type" ) func (rg *RouteGroup) StartServer(addr string, config Type.Optional[ServerConfig]) *http.Server { diff --git a/simplerouter/router_test.go b/simplerouter/router_test.go index f8d8fb1..755c265 100644 --- a/simplerouter/router_test.go +++ b/simplerouter/router_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - Testing "github.com/lbatuska/goutils/testing" - Type "github.com/lbatuska/goutils/type" + Testing "git.nas-technologies.com/lbatuska/goutils/testing" + Type "git.nas-technologies.com/lbatuska/goutils/type" ) func setupServer(wg *sync.WaitGroup) { diff --git a/type/optional.go b/type/optional.go index a84895f..1fefef5 100644 --- a/type/optional.go +++ b/type/optional.go @@ -9,7 +9,7 @@ import ( "reflect" "time" - Assert "github.com/lbatuska/goutils/assert" + Assert "git.nas-technologies.com/lbatuska/goutils/assert" ) // Marker interface impl diff --git a/type/optional_test.go b/type/optional_test.go index 0d413ac..4f703eb 100644 --- a/type/optional_test.go +++ b/type/optional_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - Testing "github.com/lbatuska/goutils/testing" + Testing "git.nas-technologies.com/lbatuska/goutils/testing" ) var ( diff --git a/type/result.go b/type/result.go index 3167e00..937a763 100644 --- a/type/result.go +++ b/type/result.go @@ -9,7 +9,7 @@ import ( "reflect" "time" - Assert "github.com/lbatuska/goutils/assert" + Assert "git.nas-technologies.com/lbatuska/goutils/assert" ) // Marker interface impl diff --git a/type/result_test.go b/type/result_test.go index 3d06875..045cd55 100644 --- a/type/result_test.go +++ b/type/result_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - Testing "github.com/lbatuska/goutils/testing" + Testing "git.nas-technologies.com/lbatuska/goutils/testing" ) var (