From a04e838c903819b2e96626972d9af94d9bf10662 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Mon, 23 Oct 2023 11:46:25 -0700 Subject: [PATCH] github.com/reiver/go-strfs -> sourcecode.social/reiver/go-strfs --- README.md | 6 +++--- go.mod | 2 +- regularfile_test.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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"