diff --git a/README.md b/README.md index 9783dca..87ead15 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,16 @@ Package **strfs** provides a virtual file-system, whre a `fs.File` can be create ## Documention -Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-strfs +Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-strfs -[![GoDoc](https://godoc.org/github.com/reiver/go-strfs?status.svg)](https://godoc.org/github.com/reiver/go-strfs) +[![GoDoc](https://godoc.org/sourcecode.social/reiver/go-strfs?status.svg)](https://godoc.org/sourcecode.social/reiver/go-strfs) ## Example fs.File Here is an example of turning a Go `string` into a `fs.File`: ```go -import "github.com/reiver/go-strfs" +import "sourcecode.social/reiver/go-strfs" // ... diff --git a/go.mod b/go.mod index 3c8b97d..fcf937f 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/reiver/go-strfs +module sourcecode.social/reiver/go-strfs go 1.18 diff --git a/regularfile_test.go b/regularfile_test.go index 4072956..5219aca 100644 --- a/regularfile_test.go +++ b/regularfile_test.go @@ -1,7 +1,7 @@ package strfs_test import ( - "github.com/reiver/go-strfs" + "sourcecode.social/reiver/go-strfs" "io" "io/fs"