From a22d8dfd04d4e6e1882e021bc0ae4e7889ca9de6 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Sun, 25 Aug 2024 05:31:04 -0700 Subject: [PATCH] sourcecode.social -> github.com --- README.md | 6 +++--- content_test.go | 2 +- errors.go | 2 +- go.mod | 4 ++-- go.sum | 4 ++-- regularfile_test.go | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 879ba97..e8ab73d 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/sourcecode.social/reiver/go-strfs +Online documentation, which includes examples, can be found at: http://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) +[![GoDoc](https://godoc.org/github.com/reiver/go-strfs?status.svg)](https://godoc.org/github.com/reiver/go-strfs) ## Example fs.File Here is an example of turning a Go `string` into a `fs.File`: ```go -import "sourcecode.social/reiver/go-strfs" +import "github.com/reiver/go-strfs" // ... diff --git a/content_test.go b/content_test.go index 00c509d..55510ab 100644 --- a/content_test.go +++ b/content_test.go @@ -1,7 +1,7 @@ package strfs_test import ( - "sourcecode.social/reiver/go-strfs" + "github.com/reiver/go-strfs" "io" diff --git a/errors.go b/errors.go index 6c74011..3a20885 100644 --- a/errors.go +++ b/errors.go @@ -1,7 +1,7 @@ package strfs import ( - "sourcecode.social/reiver/go-erorr" + "github.com/reiver/go-erorr" ) const ( diff --git a/go.mod b/go.mod index fcf937f..1b48898 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ -module sourcecode.social/reiver/go-strfs +module github.com/reiver/go-strfs go 1.18 -require sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1 // indirect +require github.com/reiver/go-erorr v0.0.0-20240801233437-8cbde6d1fa3f // indirect diff --git a/go.sum b/go.sum index fa79421..1e5d1bf 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1 h1:wpnz4JicQBLWrgGphYBls7DysIFCcnWgDz/vce/sY8E= -sourcecode.social/reiver/go-erorr v0.0.0-20230922202459-231149d185a1/go.mod h1:NFtd7fzEf0r6A6R7JXYZfayRhPaJy0zt/18VWoLzrxA= +github.com/reiver/go-erorr v0.0.0-20240801233437-8cbde6d1fa3f h1:D1QSxKHm8U73XhjsW3SFLkT0zT5pKJi+1KGboMhY1Rk= +github.com/reiver/go-erorr v0.0.0-20240801233437-8cbde6d1fa3f/go.mod h1:F0HbBf+Ak2ZlE8YkDW4Y+KxaUmT0KaaIJK6CXY3cJxE= diff --git a/regularfile_test.go b/regularfile_test.go index 5219aca..4072956 100644 --- a/regularfile_test.go +++ b/regularfile_test.go @@ -1,7 +1,7 @@ package strfs_test import ( - "sourcecode.social/reiver/go-strfs" + "github.com/reiver/go-strfs" "io" "io/fs"