diff --git a/README.md b/README.md index 5c8e2d6..fcd9d23 100644 --- a/README.md +++ b/README.md @@ -4,22 +4,22 @@ Package **jsonstr** provides tools for working with strings in JSON. ## Documention -Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-jsonstr +Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-jsonstr -[![GoDoc](https://godoc.org/sourcecode.social/reiver/go-jsonstr?status.svg)](https://godoc.org/sourcecode.social/reiver/go-jsonstr) +[![GoDoc](https://godoc.org/github.com/reiver/go-jsonstr?status.svg)](https://godoc.org/github.com/reiver/go-jsonstr) ## Import To import package **jsonstr** use `import` code like the follownig: ``` -import "sourcecode.social/reiver/go-jsonstr" +import "github.com/reiver/go-jsonstr" ``` ## Installation To install package **jsonstr** do the following: ``` -GOPROXY=direct go get https://sourcecode.social/reiver/go-jsonstr +GOPROXY=direct go get https://github.com/reiver/go-jsonstr ``` ## Author diff --git a/go.mod b/go.mod index 9046ade..38e50cf 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module sourcecode.social/reiver/go-jsonstr +module github.com/reiver/go-jsonstr go 1.20 diff --git a/strings_marshaljson_test.go b/strings_marshaljson_test.go index f7eeeac..4ce58c0 100644 --- a/strings_marshaljson_test.go +++ b/strings_marshaljson_test.go @@ -5,7 +5,7 @@ import ( "encoding/json" - "sourcecode.social/reiver/go-jsonstr" + "github.com/reiver/go-jsonstr" ) func TestString_MarshalJSON(t *testing.T) { diff --git a/strings_unmarshaljson_test.go b/strings_unmarshaljson_test.go index 84e740e..08ee845 100644 --- a/strings_unmarshaljson_test.go +++ b/strings_unmarshaljson_test.go @@ -5,7 +5,7 @@ import ( "encoding/json" - "sourcecode.social/reiver/go-jsonstr" + "github.com/reiver/go-jsonstr" ) func TestString_UnmarshalJSON(t *testing.T) {