From 874192441e799f94cd4f8e0a6f1791531a84f455 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Sat, 24 Aug 2024 06:46:08 -0700 Subject: [PATCH] sourcecode.social -> github.com --- README.md | 8 ++++---- alpha_test.go | 2 +- bit_test.go | 2 +- digit_test.go | 2 +- go.mod | 2 +- hexdig_test.go | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2240af3..0485fed 100644 --- a/README.md +++ b/README.md @@ -7,22 +7,22 @@ https://datatracker.ietf.org/doc/html/rfc2234 ## Documention -Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-rfc2234 +Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-rfc2234 -[![GoDoc](https://godoc.org/sourcecode.social/reiver/go-rfc2234?status.svg)](https://godoc.org/sourcecode.social/reiver/go-rfc2234) +[![GoDoc](https://godoc.org/github.com/reiver/go-rfc2234?status.svg)](https://godoc.org/github.com/reiver/go-rfc2234) ## Import To import package **rfc2234** use `import` code like the follownig: ``` -import "sourcecode.social/reiver/go-rfc2234" +import "github.com/reiver/go-rfc2234" ``` ## Installation To install package **rfc2234** do the following: ``` -GOPROXY=direct https://sourcecode.social/reiver/go-rfc2234 +GOPROXY=direct https://github.com/reiver/go-rfc2234 ``` ## Author diff --git a/alpha_test.go b/alpha_test.go index 693098f..42f13ad 100644 --- a/alpha_test.go +++ b/alpha_test.go @@ -3,7 +3,7 @@ package rfc2234_test import ( "testing" - "sourcecode.social/reiver/go-rfc2234" + "github.com/reiver/go-rfc2234" ) func TestIsAlpha(t *testing.T) { diff --git a/bit_test.go b/bit_test.go index 7337d9c..d9e6786 100644 --- a/bit_test.go +++ b/bit_test.go @@ -3,7 +3,7 @@ package rfc2234_test import ( "testing" - "sourcecode.social/reiver/go-rfc2234" + "github.com/reiver/go-rfc2234" ) func TestIsBit(t *testing.T) { diff --git a/digit_test.go b/digit_test.go index 939eaba..e563b1c 100644 --- a/digit_test.go +++ b/digit_test.go @@ -3,7 +3,7 @@ package rfc2234_test import ( "testing" - "sourcecode.social/reiver/go-rfc2234" + "github.com/reiver/go-rfc2234" ) func TestIsDigit(t *testing.T) { diff --git a/go.mod b/go.mod index 4df1ba4..69c86b1 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module sourcecode.social/reiver/go-rfc2234 +module github.com/reiver/go-rfc2234 go 1.20 diff --git a/hexdig_test.go b/hexdig_test.go index f70cd92..4bad0f8 100644 --- a/hexdig_test.go +++ b/hexdig_test.go @@ -3,7 +3,7 @@ package rfc2234_test import ( "testing" - "sourcecode.social/reiver/go-rfc2234" + "github.com/reiver/go-rfc2234" ) func TestIsHexDig(t *testing.T) {