"sourcecode.social/reiver/go-erorr" -> "github.com/reiver/go-erorr"

master
Charles Iliya Krempeaux 2024-08-01 15:54:31 -07:00
parent e17c568066
commit de2a043732
4 changed files with 5 additions and 10 deletions

View File

@ -1,7 +1,7 @@
package jsonint package jsonint
import ( import (
"sourcecode.social/reiver/go-erorr" "github.com/reiver/go-erorr"
) )
const ( const (

5
go.mod
View File

@ -2,7 +2,4 @@ module github.com/reiver/go-jsonint
go 1.20 go 1.20
require ( require github.com/reiver/go-erorr v0.0.0-20240704145350-0485e21eaa82
sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1 // indirect
sourcecode.social/reiver/go-opt v0.0.0-20230923212734-e38043bd8901 // indirect
)

6
go.sum
View File

@ -1,4 +1,2 @@
sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1 h1:wpnz4JicQBLWrgGphYBls7DysIFCcnWgDz/vce/sY8E= github.com/reiver/go-erorr v0.0.0-20240704145350-0485e21eaa82 h1:xxt7qL+7ZfRysXWXU2MpULOg/zWe5P+Fmw9VyUFCmZE=
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/go.mod h1:F0HbBf+Ak2ZlE8YkDW4Y+KxaUmT0KaaIJK6CXY3cJxE=
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=

2
int.go
View File

@ -4,7 +4,7 @@ import (
"encoding/json" "encoding/json"
"strconv" "strconv"
"sourcecode.social/reiver/go-erorr" "github.com/reiver/go-erorr"
) )
var _ json.Marshaler = Int{} var _ json.Marshaler = Int{}