sourcecode.social -> github.com
parent
68ed4835e5
commit
874192441e
|
@ -7,22 +7,22 @@ https://datatracker.ietf.org/doc/html/rfc2234
|
||||||
|
|
||||||
## Documention
|
## 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
|
## Import
|
||||||
|
|
||||||
To import package **rfc2234** use `import` code like the follownig:
|
To import package **rfc2234** use `import` code like the follownig:
|
||||||
```
|
```
|
||||||
import "sourcecode.social/reiver/go-rfc2234"
|
import "github.com/reiver/go-rfc2234"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
To install package **rfc2234** do the following:
|
To install package **rfc2234** do the following:
|
||||||
```
|
```
|
||||||
GOPROXY=direct https://sourcecode.social/reiver/go-rfc2234
|
GOPROXY=direct https://github.com/reiver/go-rfc2234
|
||||||
```
|
```
|
||||||
|
|
||||||
## Author
|
## Author
|
||||||
|
|
|
@ -3,7 +3,7 @@ package rfc2234_test
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sourcecode.social/reiver/go-rfc2234"
|
"github.com/reiver/go-rfc2234"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestIsAlpha(t *testing.T) {
|
func TestIsAlpha(t *testing.T) {
|
||||||
|
|
|
@ -3,7 +3,7 @@ package rfc2234_test
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sourcecode.social/reiver/go-rfc2234"
|
"github.com/reiver/go-rfc2234"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestIsBit(t *testing.T) {
|
func TestIsBit(t *testing.T) {
|
||||||
|
|
|
@ -3,7 +3,7 @@ package rfc2234_test
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sourcecode.social/reiver/go-rfc2234"
|
"github.com/reiver/go-rfc2234"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestIsDigit(t *testing.T) {
|
func TestIsDigit(t *testing.T) {
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,3 +1,3 @@
|
||||||
module sourcecode.social/reiver/go-rfc2234
|
module github.com/reiver/go-rfc2234
|
||||||
|
|
||||||
go 1.20
|
go 1.20
|
||||||
|
|
|
@ -3,7 +3,7 @@ package rfc2234_test
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sourcecode.social/reiver/go-rfc2234"
|
"github.com/reiver/go-rfc2234"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestIsHexDig(t *testing.T) {
|
func TestIsHexDig(t *testing.T) {
|
||||||
|
|
Loading…
Reference in New Issue