From de2a043732b52a19238a79030b17f7dcd0a34498 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Thu, 1 Aug 2024 15:54:31 -0700 Subject: [PATCH] "sourcecode.social/reiver/go-erorr" -> "github.com/reiver/go-erorr" --- errors.go | 2 +- go.mod | 5 +---- go.sum | 6 ++---- int.go | 2 +- 4 files changed, 5 insertions(+), 10 deletions(-) diff --git a/errors.go b/errors.go index 5ae6487..3c0ea06 100644 --- a/errors.go +++ b/errors.go @@ -1,7 +1,7 @@ package jsonint import ( - "sourcecode.social/reiver/go-erorr" + "github.com/reiver/go-erorr" ) const ( diff --git a/go.mod b/go.mod index b03ac4a..becd213 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,4 @@ module github.com/reiver/go-jsonint go 1.20 -require ( - sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1 // indirect - sourcecode.social/reiver/go-opt v0.0.0-20230923212734-e38043bd8901 // indirect -) +require github.com/reiver/go-erorr v0.0.0-20240704145350-0485e21eaa82 diff --git a/go.sum b/go.sum index 92f33b5..eec5ece 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +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= -sourcecode.social/reiver/go-opt v0.0.0-20230923212734-e38043bd8901 h1:mMuaCYrl0WklX8gDaA+WvPmXFMs2YhdbgYmW3E8A36M= -sourcecode.social/reiver/go-opt v0.0.0-20230923212734-e38043bd8901/go.mod h1:SEWWqfbCkDQCL0mpqwZEJQQkqLzhJZs1k4EmJ9xPU0E= +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/int.go b/int.go index de82756..2678c92 100644 --- a/int.go +++ b/int.go @@ -4,7 +4,7 @@ import ( "encoding/json" "strconv" - "sourcecode.social/reiver/go-erorr" + "github.com/reiver/go-erorr" ) var _ json.Marshaler = Int{}