diff --git a/README.md b/README.md index 3fec369..f489ae4 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ This helps to work-around that numbers in JSON are effectively "broken". ## Documention -Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-jsonint +Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-jsonint -[![GoDoc](https://godoc.org/sourcecode.social/reiver/go-jsonint?status.svg)](https://godoc.org/sourcecode.social/reiver/go-jsonint) +[![GoDoc](https://godoc.org/github.com/reiver/go-jsonint?status.svg)](https://godoc.org/github.com/reiver/go-jsonint) ## Example @@ -31,14 +31,14 @@ err := json.Unmarshal(data, &account) To import package **jsonint** use `import` code like the follownig: ``` -import "sourcecode.social/reiver/go-jsonint" +import "github.com/reiver/go-jsonint" ``` ## Installation To install package **jsonint** do the following: ``` -GOPROXY=direct go get https://sourcecode.social/reiver/go-jsonint +GOPROXY=direct go get https://github.com/reiver/go-jsonint ``` ## Author diff --git a/go.mod b/go.mod index f7b6f32..b03ac4a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module sourcecode.social/reiver/go-jsonint +module github.com/reiver/go-jsonint go 1.20 diff --git a/int_marshaljson_test.go b/int_marshaljson_test.go index 8ec5323..6d30030 100644 --- a/int_marshaljson_test.go +++ b/int_marshaljson_test.go @@ -3,7 +3,7 @@ package jsonint_test import ( "testing" - "sourcecode.social/reiver/go-jsonint" + "github.com/reiver/go-jsonint" ) func TestInt_MarshalJSON(t *testing.T) { diff --git a/int_unmarshaljson_test.go b/int_unmarshaljson_test.go index a58a41c..8bd0981 100644 --- a/int_unmarshaljson_test.go +++ b/int_unmarshaljson_test.go @@ -5,7 +5,7 @@ import ( "encoding/json" - "sourcecode.social/reiver/go-jsonint" + "github.com/reiver/go-jsonint" ) func TestInt_UnmarshalJSON(t *testing.T) { diff --git a/zero_test.go b/zero_test.go index 0572b77..c1a9014 100644 --- a/zero_test.go +++ b/zero_test.go @@ -5,7 +5,7 @@ import ( "encoding/json" - "sourcecode.social/reiver/go-jsonint" + "github.com/reiver/go-jsonint" ) func TestZero(t *testing.T) {