sourcecode.social -> github.com

master
Charles Iliya Krempeaux 2024-08-24 06:46:08 -07:00
parent 68ed4835e5
commit 874192441e
6 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -3,7 +3,7 @@ package rfc2234_test
import (
"testing"
"sourcecode.social/reiver/go-rfc2234"
"github.com/reiver/go-rfc2234"
)
func TestIsAlpha(t *testing.T) {

View File

@ -3,7 +3,7 @@ package rfc2234_test
import (
"testing"
"sourcecode.social/reiver/go-rfc2234"
"github.com/reiver/go-rfc2234"
)
func TestIsBit(t *testing.T) {

View File

@ -3,7 +3,7 @@ package rfc2234_test
import (
"testing"
"sourcecode.social/reiver/go-rfc2234"
"github.com/reiver/go-rfc2234"
)
func TestIsDigit(t *testing.T) {

2
go.mod
View File

@ -1,3 +1,3 @@
module sourcecode.social/reiver/go-rfc2234
module github.com/reiver/go-rfc2234
go 1.20

View File

@ -3,7 +3,7 @@ package rfc2234_test
import (
"testing"
"sourcecode.social/reiver/go-rfc2234"
"github.com/reiver/go-rfc2234"
)
func TestIsHexDig(t *testing.T) {