diff --git a/go.mod b/go.mod index 3b5d155..27dbe77 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module github.com/reiver/go-nul go 1.18 -require sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1 // indirect +require github.com/reiver/go-erorr v0.0.0-20240704145350-0485e21eaa82 diff --git a/go.sum b/go.sum index fa79421..eec5ece 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1 h1:wpnz4JicQBLWrgGphYBls7DysIFCcnWgDz/vce/sY8E= -sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1/go.mod h1:NFtd7fzEf0r6A6R7JXYZfayRhPaJy0zt/18VWoLzrxA= +github.com/reiver/go-erorr v0.0.0-20240704145350-0485e21eaa82 h1:xxt7qL+7ZfRysXWXU2MpULOg/zWe5P+Fmw9VyUFCmZE= +github.com/reiver/go-erorr v0.0.0-20240704145350-0485e21eaa82/go.mod h1:F0HbBf+Ak2ZlE8YkDW4Y+KxaUmT0KaaIJK6CXY3cJxE= diff --git a/nullable_marshaljson.go b/nullable_marshaljson.go index e1f9df8..0d3e199 100644 --- a/nullable_marshaljson.go +++ b/nullable_marshaljson.go @@ -3,7 +3,7 @@ package nul import ( "encoding/json" - "sourcecode.social/reiver/go-erorr" + "github.com/reiver/go-erorr" ) var _ json.Marshaler = Nothing[bool]() diff --git a/nullable_unmarshaljson.go b/nullable_unmarshaljson.go index 2c0d611..116a304 100644 --- a/nullable_unmarshaljson.go +++ b/nullable_unmarshaljson.go @@ -3,7 +3,7 @@ package nul import ( "encoding/json" - "sourcecode.social/reiver/go-erorr" + "github.com/reiver/go-erorr" ) const errNilReceiver = erorr.Error("nul: nil receiver")